编辑
不使用StoryBoard
本文访问次数:0

如果你不想在项目中使用storyboard,那么需要做以下处理

  • 移除Info.plist中的相关信息
<key>UIMainStoryboardFile</key>
<string>Main</string>
  • 使用代码创建UIWindow
    如果不使用storyboard,就需要使用代码创建UIWindow,在AppDelegate中
- (BOOL)application:(UIApplication*)application
    didFinishLaunchingWithOptions:(NSDictionary*)launchOptions {
    self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
    SplashViewController* splashViewController = [[SplashViewController alloc] init];
    self.window.backgroundColor = [UIColor whiteColor];
    self.window.rootViewController = splashViewController;
    [self.window makeKeyAndVisible];
}

需要输入验证码才能留言

没有任何评论