Featured post

Difference between protocol and delegates?

A protocol, declared with the ( @protocol syntax in Objective-C) is used to declare a set of methods that a class "adopts" (de...

Thursday, 9 April 2015

What is the use of Controller?

In iOS, the controller is generally a subclass of UIViewController that manages a view, it is also responsible for responding to delegation      messages and target-action messages.

Example:
You have a UITableViewController which is a subclass of                     
UIViewController hat manages a UITableView 

No comments:

Post a Comment