user1923975
user1923975

Reputation: 1389

Started making my app, now need story boards

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

Answers (1)

SpaceDust__
SpaceDust__

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

enter image description here

enter image description here

enter image description here

enter image description here

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

enter image description here

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

enter image description here

Upvotes: 8

Related Questions