iOS 5 Storyboard: How To use Segues, Scenes and Static Content UITableViews--Part III

来源:互联网 发布:手机制作软件的软件 编辑:程序博客网 时间:2024/06/14 09:57

General Storyboard Tips and Resources

UIStoryboard is a runtime representation of everything configured inside Interface Builder as such any individual scene can be loaded using either,

[UIStoryboard instantiateInitalViewController] [UIStoryboard InstantiateViewControllerWithIdentifier]

Should you choose to split your application across multiple Storyboards these can be loaded using,

[UIStoryboard storyboardWithName:bundle:]

To launch your main story board at the predefined entry starting point of your applications user interface you can just specify the name of the story board in your info plist (Key UIMainStoryboardFile).

If you loose your entry point or wish to change the entry point of your Storyboard you can do so by following my previous post.
Specifying the entry point of your Storyboard

Useful resources
WWSC 2011 Storyboard Example

I hope you found this useful here are some other tutorials.

  • How to use UIGestureRecognizers for Tap, Pinch, and Rotate
  • Displaying the delete button for a contact using ABPersonViewController