25 lines
543 B
Objective-C
Executable File
25 lines
543 B
Objective-C
Executable File
//
|
|
// AppDelegate.h
|
|
// msext
|
|
//
|
|
// Created by chao on 15/7/23.
|
|
// Copyright (c) 2015年 chao. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "CustomWindow.h"
|
|
#import "HTTPServer.h"
|
|
@class RootVC;
|
|
@class NewRootVC;
|
|
@interface AppDelegate : UIResponder <UIApplicationDelegate>
|
|
|
|
@property (strong, nonatomic) CustomWindow *window;
|
|
@property (strong, nonatomic)RootVC *root;
|
|
@property (strong, nonatomic)NewRootVC *newroot;
|
|
|
|
@property (nonatomic,strong) HTTPServer *localHttpServer;
|
|
|
|
@property (nonatomic,copy) NSString *port;
|
|
@end
|
|
|