当前位置: 代码迷 >> Iphone >> Xcode6.0+创建一个empty application方法
  详细解决方案

Xcode6.0+创建一个empty application方法

热度:137   发布时间:2016-04-25 05:39:52.0
Xcode6.0+创建一个empty application步骤:

1、选择模版Single View Application

2、将Main.storyboard 和LaunchScreen.xib删除

3、在Info.plist中,把Launch screen interface file base name 以及Main storyboard file base name删除

4、点击在target里的Use Asset Catalog,对话框里直接点击Migrate

5、在AppDelegate的第一个方法里面添加代码:

 

OC:

(1)、创建window

self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];

(2)、设置window背景

self.window.backgroundColor = [UIColor whiteColor];

(3)、使window可见

[self.window makeKeyAndVisible];

 

Swift

self.window = UIWindow(frame:UIScreen.mainScreen().bounds);

self.window!.backgroundColor = UIColor.whiteColor();

self.window!.makeKeyAndVisible();

  相关解决方案