Reputation: 4237
I'm running xcode 5.0.1. In previous version Xcode, there was to be a checkbox for not using storyboard when creating a ios project. How do I turn off storyboards and just use xib files in xcode 5.0.1?
Upvotes: 0
Views: 1076
Reputation: 60110
Unfortunately, the built-in project templates in Xcode 5 mandate storyboards, unless you pick the Empty Application template. Your choices therefore boil down to:
Upvotes: 3
Reputation: 2524
Open a new project as an empty project. The selection is in the bottom row, second from the right. Then you can add your view controllers in your app delegate. Hope this helps.
Upvotes: 0