Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
815 views
in Technique[技术] by (71.8m points)

iphone - 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

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

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


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...