Objective-c Protocol

Source: Internet
Author: User

The protocol in OC is similar to the excuse of Java

The Protocol is special.ProgramDesign Patterns are used to declare methods implemented by other classes. Protocols are useful in the following scenarios:

1. There must be other class implementation methods.

2. Excuses for declaring unknown classes

3. Communication between two classes

Basic Features of the Protocol

The Protocol can be implemented by any class

The Protocol itself is not a class. It defines an interface that can be implemented by other classes.

Protocols can also be used for categories

Protocol declaration and implementation

@ Required: indicates the method that must be implemented forcibly.

@ Optional: indicates the method that can be implemented selectively.

// Protocol declaration @ protocol firstprotocol <nsobject> // <nsobject> indicates the base protocol. You can leave @ required-(void) requiredmethod; @ optional-(void) optionalmethod; @ end // use this Protocol @ interface person: nsobject <firstprotocol, secondprotocol> @ end @ implementation person-(void) requiredmethod {}

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.