I have a file called ManageAddressBook.m The file has two @implementation inside
What does the second one mean?
@implementation ManageAddressBook
@end
@implementation NSString (Additions)
@end
|
I have a file called ManageAddressBook.m The file has two @implementation inside What does the second one mean?
|
|||||||||
|
|
The first implementation is just a new class. The second implementation is basically extension methods to an existing class, known as Categories. See the article: Categories and Extensions for more information. As summarized at the top of the link:
|
||||
|
|
|
The second one implements an Objective-C Category on Adding categories lets you extend functionality of a class in a way that is somewhat similar to C#'s extension methods: the objects start responding to the messages defined in categories, making it convenient for you to write functionality in a flexible and modular way. |
|||
|
|