Skip to content

Instantly share code, notes, and snippets.

@takatoshi
Created October 25, 2012 19:39
Show Gist options
  • Save takatoshi/3954940 to your computer and use it in GitHub Desktop.
Save takatoshi/3954940 to your computer and use it in GitHub Desktop.
#import <UIKit/UIKit.h>
@class RootViewController;
@interface AppDelegate : NSObject <UIApplicationDelegate> {
UIWindow *window;
// *** 追加 *** //
RootViewController *viewController;
}
@property (nonatomic, retain) UIWindow *window;
// *** 追加 *** //
@property (nonatomic, retain) RootViewController *viewController;
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment