手机
当前位置:查字典教程网 >编程开发 >IOS开发 >iOS 运行时添加属性和方法
iOS 运行时添加属性和方法
摘要:第一种:runtime.h里的方法BOOLclass_addProperty(Classcls,constchar*name,constob...

第一种:runtime.h里的方法BOOL class_addProperty(Class cls, const char *name, const objc_property_attribute_t *attributes, unsigned int attributeCount)

#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;}@endNSString *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]); }}输出:SteveJobs 第二种:- (id)valueForUndefinedKey:(NSString *)key 第三种: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);}

【iOS 运行时添加属性和方法】相关文章:

iOS App开发中Objective-C使用正则表达式进行匹配的方法

iOS的HTTP请求和请求回执类用法小结

iOS开发中使用屏幕旋转功能的相关方法

iOS如何使用自己添加的字体库

浅谈iOS中三种生成随机数方法

总结IOS界面间跳转的几种方法

详解iOS App中图片的线段涂鸦功能的添加方法

iOS关闭虚拟键盘方法汇总

iOS 汉字的拼音

iOS 按钮上的文字添加下划线的方法

精品推荐
分类导航