New Empty project in Xcode6(2014-10-29 13:14:44)
reproduced
upgrade Xcode6 After the direct establishment of the empty project found that this is too pit, really is nothing ah. There's only one way to change.summarized as follows:1. Create a single view application2. Open Info.plist (Don't tell me where to find info.plist), delete the Launch screen interface file base name and main main storyboard file B ASE name 3. Delete Main.storyboard and Launchscreen.xib4. Modify the following in APPDELEGATE.M - (BOOL) Application: (UIApplication*) Application Didfinishlaunchingwithoptions: (Nsdictionary*) Launchoptions {
Override point for customization after applicationlaunch.
Self.Window=[[UIWindowAlloc]initWithFrame:[[UIScreenMainscreen]Bounds]];
Viewcontroller*vc= [[ViewcontrollerAlloc]Init];
[Self.WindowSetrootviewcontroller: VC];
[Self.window makekeyandvisible
return yes}
5. Then run the program and find that the program interface on the iphone5s is only iPhone4 on the size. This is all an old problem, add a picture [email protected]. OK, all done ...
Xcode6 New Project