Extension (Extension) usage in objective-C, private in objective-C

Source: Internet
Author: User

Class extension is like an "anonymous" category. The method declared in the extension is implemented in the @ Implementation of the class and its corresponding @ end.

Class sometimes needs to make the method visible to itself, we can define the classPrivate Method.

Let's take a look at the extended writing method. Note that all of the followingCodeAre defined in the. M file, but also pay attention to the brackets

# Import "person. H" @ interface person ()-(void) privatefuc; @ end @ implementation person-(void) privatefuc {}@ end

Let's compare the Writing Method of the category.

. H file

# Import <Foundation/Foundation. h> @ interface nsstring (mycompare)-(void) test; @ end

In the. M file

# Import "nsstring + mycompare. H" @ implementation nsstring (mycompare)-(void) test {}@ end
Related Article

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.