iOS First Launch view

后端 未结 3 1268
野趣味
野趣味 2021-01-16 05:37

I am trying to put a first launch view. I already tried some stuff but that won\'t work.

Here is what I have:

- (BOOL)application:(UIApplication *)a         


        
3条回答
  •  时光取名叫无心
    2021-01-16 05:56

    If you do nothing, the storyboard's initial view controller will appear. If you want something else to happen, what you want to set is self.window.rootViewController. In that case you will also need to create and show the window manually.

提交回复
热议问题