views:

42

answers:

1

Hello,

What is the difference between different View Controllers [like, NavigationViewController, Table ViewController,TabViewController etc...] in iPhone? is the difference only is display format? or also in handling the different views on it??

Thanks in advance.

+1  A: 

They control different views. So a UIViewController controls a UIView. A UITableViewController contols a UITableView etc.

Tom Irving