Moved more ivars to class extensions
This commit is contained in:
@ -29,10 +29,6 @@
|
||||
|
||||
#import "GCDWebServer.h"
|
||||
|
||||
@interface AppDelegate : UIResponder <UIApplicationDelegate> {
|
||||
@private
|
||||
UIWindow* _window;
|
||||
GCDWebServer* _webServer;
|
||||
}
|
||||
@interface AppDelegate : UIResponder <UIApplicationDelegate>
|
||||
@property(retain, nonatomic) UIWindow* window;
|
||||
@end
|
||||
|
||||
@ -27,6 +27,13 @@
|
||||
|
||||
#import "AppDelegate.h"
|
||||
|
||||
@interface AppDelegate () {
|
||||
@private
|
||||
UIWindow* _window;
|
||||
GCDWebServer* _webServer;
|
||||
}
|
||||
@end
|
||||
|
||||
@implementation AppDelegate
|
||||
|
||||
@synthesize window=_window;
|
||||
|
||||
Reference in New Issue
Block a user