iOS category and extension (Extension)-B

Source: Internet
Author: User

Apple's official documentationcategory is used very frequently in iOS development. Especially in the expansion of the system class, we can not inherit the system class, directly to the system class to add methods, the maximum extent of the objective-c dynamic language characteristics.

#import

@interface NSObject (Category)

-(void) MyMethod;

@end

This is the simplest category to use for the NSObject class and adds a method to NSObject.

Points to note in using Category:

(1) The method of category does not have to be implemented in @implementation, but it can be implemented in other locations, but when the method of category is called, the implementation of the method is not found according to the inheritance tree, and the program crashes.

(2) Category theory cannot add variables, but @dynamic can be used to compensate for this deficiency.

#import

static const void * Externvariablekey =&externvariablekey;

@implementation NSObject (Category)

@dynamic variable;

-(ID) variable

{

Return Objc_getassociatedobject (self, externvariablekey);

}

-(void) SetVariable: (ID) variable

{

Objc_setassociatedobject (self, externvariablekey, variable, objc_association_retain_nonatomic);

}

-----------------------------------------------------------------------------------------

Extension is very much like a category that is not named.

@interface Myclass:nsobject

@property (retain, readonly) float value;

@end

In general, extension are placed above the @implementation in the. m file.

@interface MyClass ()

@property (retain, readwrite) float value;

@end

Points to note when using extension:

(1) The method in extension must be implemented in the @implementation, otherwise the compilation will error.

iOS category and extension (Extension)-B

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.