Reputation: 1389
So istarted making my first app and it's just a single view application but now i've realised it might be useful to have the story board feature enabled (now that I know what i can do with it). I didn't tick it when I started.
Is it too late to enable it? What's the easiest way to move my app into a storyboard enabled file?
Thanks
Upvotes: 1
Views: 180
Reputation: 4914
No it is not too late
Right click on your code and choose New File
-> under IOS
-> User Interface
-> Storyboard
-> Iphone -> Save As Storyboard
Now find your Info.plist (it should be in your resources or supported files) right click and choose add row find Main storyboard file base name
on value Storyboard
In your app didfinishlaunchingwithoptions return yes
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
return YES;
}
Now go to your storyboard and add Uiviewcontrollers, navigation controllers etc...
Make sure your first uiviewcontroller is set to initial view controller
Upvotes: 8