Add attributes and methods during iOS Runtime

Source: Internet
Author: User

Add attributes and methods during iOS Runtime

 

First: Method BOOL class_addProperty (Class cls, const char * name, const objc_property_attribute_t * attributes, unsigned int attributeCount) in runtime. h)

# 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]) ;}} output: SteveJobs type 2:-(id) valueForUndefinedKey :( NSString *) key 3: static char const * const ObjectTagKey; @ implementation NSObject (ExampleCategoryWithProperty) @ dynamic objectTag;-(id) objectTag {return identifier (self, ObjectTagKey);}-(void) setObjectTag :( id) newObjectTag {objc_setAssociatedObject (self, ObjectTagKey, newObject, OBJC_ASSOCIATION_RETAIN_NONATOMIC );}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.