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 subclassing?

The declaration of a category interface looks very much like a class interface declaration.
Except the category name is listed within parentheses after the class name and the superclass isn’t mentioned .
Class extensions are like anonymous categories,except that the methods they declare must be implemented in the main @implementation block for the corresponding class. 

No comments:

Post a Comment