iPhoneHTTPServerAppDelegate.h
上传用户:kc0325
上传日期:2020-06-20
资源大小:204k
文件大小:0k
源码类别:

iPhone

开发平台:

Objective-C

  1. //
  2. //  This class was created by Nonnus,
  3. //  who graciously decided to share it with the CocoaHTTPServer community.
  4. //
  5. #import <UIKit/UIKit.h>
  6. @class   HTTPServer;
  7. @interface iPhoneHTTPServerAppDelegate : NSObject <UIApplicationDelegate> 
  8. {
  9.     UIWindow *window;
  10. HTTPServer *httpServer;
  11. NSDictionary *addresses;
  12. IBOutlet UILabel *displayInfo;
  13. }
  14. @property (nonatomic, retain) IBOutlet UIWindow *window;
  15. -(IBAction) startStopServer:(id)sender;
  16. @end