码迷,mamicode.com
首页 > 移动开发 > 详细

iOS 运行时添加属性和方法

时间:2014-05-28 02:59:54      阅读:279      评论:0      收藏:0      [点我收藏+]

标签:style   c   class   blog   code   java   

原文链接http://blog.csdn.net/meegomeego/article/details/18356169

第一种
:runtime.h里的方法

bubuko.com,布布扣
BOOL class_addProperty(Class cls,constchar*name,constobjc_property_attribute_t*attributes,unsignedint attributeCount)
bubuko.com,布布扣
bubuko.com,布布扣
#include <objc/runtime.h>
#import <Foundation/Foundation.h>

@interface SomeClass : NSObject {
    NSString *_privateName;
}
@end

@implementation SomeClass
- (id)init {
    self = [super init];
    if (self) _privateName = @"Steve";
    return self;
}
@end
NSString *nameGetter(id self, SEL _cmd) {
    Ivar ivar = class_getInstanceVariable([SomeClass class], "_privateName");
    return object_getIvar(self, ivar);
}

void nameSetter(id self, SEL _cmd, NSString *newName) {
    Ivar ivar = class_getInstanceVariable([SomeClass class], "_privateName");
    id oldName = object_getIvar(self, ivar);
    if (oldName != newName) object_setIvar(self, ivar, [newName copy]);
}

int main(void) {
    @autoreleasepool {
        objc_property_attribute_t type = { "T", "@\"NSString\"" };
        objc_property_attribute_t ownership = { "C", "" }; // C = copy
        objc_property_attribute_t backingivar  = { "V", "_privateName" };
        objc_property_attribute_t attrs[] = { type, ownership, backingivar };
        class_addProperty([SomeClass class], "name", attrs, 3);
        class_addMethod([SomeClass class], @selector(name), (IMP)nameGetter, "@@:");
        class_addMethod([SomeClass class], @selector(setName:), (IMP)nameSetter, "v@:@");

        id o = [SomeClass new];
        NSLog(@"%@", [o name]);
        [o setName:@"Jobs"];
        NSLog(@"%@", [o name]);
    }
}
输出:
Steve
Jobs
bubuko.com,布布扣
第二种:
-(id)valueForUndefinedKey:(NSString*)key

 

bubuko.com,布布扣
第三种:
static char const * const ObjectTagKey;

@implementation NSObject (ExampleCategoryWithProperty)
@dynamic objectTag;

- (id)objectTag {
    return objc_getAssociatedObject(self, ObjectTagKey);
}

- (void)setObjectTag:(id)newObjectTag {
    objc_setAssociatedObject(self, ObjectTagKey, newObject, OBJC_ASSOCIATION_RETAIN_NONATOMIC);
}
bubuko.com,布布扣

 

iOS 运行时添加属性和方法,布布扣,bubuko.com

iOS 运行时添加属性和方法

标签:style   c   class   blog   code   java   

原文地址:http://www.cnblogs.com/wisper/p/3753674.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!