升級xcode6以後,直接創建Empty工程後發現,這是太坑,真的是什麼都沒有啊。只能換個方法了
總結以下:
1.新建一個single view application
2.打開 Info.plist(別告訴我不知道去哪裏找info.plist),刪除裏面的 Launch screen interface file base name以及 Main Main storyboard file base name
3.刪除Main.storyboard以及LaunchScreen.xib
4.在AppDelegate.m修改以下
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
// Override point for customization after application launch.
self.window = [[UIWindow alloc]initWithFrame:[[UIScreen mainScreen]bounds]];
ViewController *vc = [[ViewController alloc]init];
[self.window setRootViewController:vc];
[self.window makeKeyAndVisible];
return YES;
}
5.而後運行程序,發如今iPhone5s上的程序界面只有iPhone4上得大小了。這都是老問題了,添加圖片Default-568h@2x.png。OK,所有搞定。。。