Categories(分类,类别)

       categories是Objective-C语言的一个特性,这个特性可以允许你向现有的类中添加方法,而不需要去写一个子类。categories中添加的方法和现有类中本来就有的方法在运行时是没有差异的。categories中添加的方法将成为现有类的一部分,并且被现有类的子类继承。

        和delegate(委托)一样,categories并不是严格的适应Decorator(装饰)模式,虽然履行了意图,但是是采取了不同的方式来实现的。categories添加的行为是编译时得产物,而不是动态的获取。而且,categories不封装正在扩展的类的实例。

        Cocoa框架定义了很多的categories,大多数是非正式协议。使用categories有两点需要注意:

        1.categories中不能添加实例变量。

        2.如果你覆盖了现有类的方法,程序的行为将无法预测。

代码示例如下

#import 
@interface NSString(TestCategories)
- (void)testCategories;
@end
#import "TestCategories.h"
@implementation NSString(TestCategories)
- (void)testCategories
{
    NSLog(@"This is a test");
}
@end
#import "TestCategories.h"
int main(int argc, char *argv[])
{
    NSString * test = @"test";
    [test testCategories];
}

你可能感兴趣的:(iOS设计模式,iOS,Categories,分类,类别)