How to add an “entry point arrow” to a tab bar controller?

后端 未结 4 1460
不知归路
不知归路 2021-01-31 14:14

In Xcode 6.2 beta, I am able to make some view controllers such as \"View Controller\" or \"Navigation view controller\" the entry point of my interface by dragging and dropping

4条回答
  •  庸人自扰
    2021-01-31 15:05

    Had the same problem. The Answer above solved it using Xcode 6.4. So I think this is the right answer. But as I can´t comment to provide this alternative, I write a new answer

    It is also possible to:

    1. open the StoryBoard per Open as Source Code
    2. In the XML tag you can add the initialViewController="viewVontrollerID" tag
    3. replace the "viewVontrollerID" with the id of the ViewController, that the application should start with. (keep the "")

提交回复
热议问题