Sunday, January 11, 2015

iOS Storyboards

Scene : from visual representation point of view, scene is nothing but View Controller.  you add scenes into your storyboard by dragging view controllers into your storyboard.  There are many different type of view controllers provided to you by the framework.  The basic view controller is UIViewController.  All other view controllers are its sub-class. UITableViewController, UICollectionViewController are a few examples of various view controllers.

View Controller: once you added a view controller into your storyboard, you will see a visual representation of the controller, it is referred as "scene". however, more than likely, you need to create a class for the scene.  that is class you put you business logic for a specific scene.


No comments:

Post a Comment