Created
December 2, 2017 19:36
-
-
Save bouchtaoui-dev/2f205b0edbda5f412d309149fa90a681 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // in some class.h | |
| @protocol ProtocolName | |
| @required | |
| // list of required methods | |
| @optional | |
| // list of optional methods | |
| @end | |
| // interface... | |
| id delegate | |
| // @end | |
| // implementation.m | |
| [delegate protocolMethod]; | |
| // @end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment