iPhoneHTTPServerAppDelegate.h
上传用户:kc0325
上传日期:2020-06-20
资源大小:204k
文件大小:0k
源码类别:
iPhone
开发平台:
Objective-C
- //
- // This class was created by Nonnus,
- // who graciously decided to share it with the CocoaHTTPServer community.
- //
- #import <UIKit/UIKit.h>
- @class HTTPServer;
- @interface iPhoneHTTPServerAppDelegate : NSObject <UIApplicationDelegate>
- {
- UIWindow *window;
- HTTPServer *httpServer;
- NSDictionary *addresses;
- IBOutlet UILabel *displayInfo;
- }
- @property (nonatomic, retain) IBOutlet UIWindow *window;
- -(IBAction) startStopServer:(id)sender;
- @end