IOS custom protocol

Source: Internet
Author: User

In the header file. h of the custom protocol

@ Protocol NSDelegate <NSObject>
@ Optional // optional

-(Void) OnOption :( NSString *) pStr;


@ Required // required
-(Void) OnRequired :( NSString *) pStr;
@ End

 

@ Interface NSClass: NSObject


Id <BSDelegate> delegate;

@ End

 

@ Property (assian) id <BSDelegate> delegate;

 


In the implementation file. m of the custom protocol

@ Synthesize delegate;

Call the protocol in the protocol implementation file


If the delegate method can be implemented, you can use respondsToSelector to call the delegate method to determine whether the delegate method has been implemented.

For example:

[Delegate respondsToSelector @ selector (OnOption :)]

Then call.
If this is required, call:

[Delegate OnRequired: @ "test"]

 

 

Other class declarations and use protocols


@ Interface UIMyView: UIViewController <BSDelegate>

NSClass * m_pClass;

@ End

 


The. m file of UIMyView formulates the delegation and implements the relevant delegation method.


M_pClass.delegate = self;

Then implement the delegate method:

-(Void) OnOption :( NSString *) pStr

{
}


-(Void) OnRequire :( NSString *) pStr

{
}


 

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.