标签:
1、适用范围
@interface 主类类名(分类类名) //不可以定义成员属性 @end @implementation 主类类名(分类类名) @end
文件名通常为:主类名+分类名
@interface PYJViewController (CategoryController) - (void)test; @end
“PYJViewController+CategoryController.m”文件:
@implementation PYJViewController (CategoryController) - (void)test { NSLog(@"这是一个分类"); } @end
5、虽然不能在分类(类别)中定义成员属性,但是有办法也可以让它支持添加属性和成员变量
Category是Objective-C中常用的语法特性,通过它可以很方便的为已有的类来添加函数。但是Category不允许为已有的类添加新的属性或者成员变量。
一种常见的办法是通过runtime.h中objc_getAssociatedObject / objc_setAssociatedObject来访问和生成关联对象。通过这种方法来模拟生成属性。
“NSObject+SpecialName.h”文件:
@interface NSObject (SpecialName) @property (nonatomic, copy) NSString *specialName; @end
“NSObject+SpecialName.m”文件:
#import "NSObject+Extension.h" #import <objc/runtime.h> static const void *SpecialNameKey = &SpecialNameKey; @implementation NSObject (SpecialName) @dynamic specialName; - (NSString *)specialName { //如果属性值是非id类型,可以通过属性值先构造OC的id对象,再通过对象获取非id类型属性 return objc_getAssociatedObject(self, SpecialNameKey); } - (void)setSpecialName:(NSString *)specialName{ //如果属性值是非id类型,可以通过属性值先构造OC的id对象,再通过对象获取非id类型属性 objc_setAssociatedObject(self, SpecialNameKey, specialName, OBJC_ASSOCIATION_RETAIN_NONATOMIC); } @end
1、适用范围
#import"PYJViewController.h" @interface PYJViewController () @property(nonatomic, copy)NSString *stringExtension; - (void)testExtension; @end
方式2、在主类的.m文件中定义
“PYJViewController.m”文件:
#import"PYJViewController.h" @interface PYJViewController () @property(nonatomic, copy)NSString *stringExtension; - (void)testExtension; @end
在主类的.m文件中实现扩展定的方法:
@implementation PYJViewController - (void)testExtension { self.stringExtension = @"给扩展里面定义的属性字符串赋值"; NSLog(@"定义的属性String是:%@", self.stringExtension); } @end
分类(类别/Category)与 类扩展(Extension)
标签:
原文地址:http://www.cnblogs.com/pengyunjing/p/5908460.html