After the update to XCODE6, found that there is no original empty application habits and also be changed.
Here's how to fix it:
1. Create a single view application
2. Open Info.plist, delete the Launch screen interface file inside .... As well as Main Storyboard file base name ...
3. Delete Main.storyboard and Launchscreen.xib
4. Modify the following in APPDELEGATE.M (where Mainviewcontroller is your own new Viewcontroller)
-(BOOL) Application: (UIApplication *) application didfinishlaunchingwithoptions: (Nsdictionary *) launchOptions {
Override point for customization after application launch.
Self.window = [[UIWindow alloc] initwithframe:[[uiscreen mainscreen] bounds]];
Self.window.rootViewController = [[Mainviewcontroller alloc]init];
[Self.window makekeyandvisible];
return YES;
}
This is all OK.
This article transfer from http://www.999dh.net/home.php?mod=space&uid=1&do=blog&quickforward=1&id=420 reprint please specify!
IOS Cocos2d Learning Notes