Skip to content

Instantly share code, notes, and snippets.

@arkilis
Created April 25, 2017 11:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save arkilis/7bf9e1e484f8637703cff4b19a44464d to your computer and use it in GitHub Desktop.
Save arkilis/7bf9e1e484f8637703cff4b19a44464d to your computer and use it in GitHub Desktop.
protocol
#import <Foundation/Foundation.h>
@protocol MyProtocol <NSObject>
@required
-(void) mustImplementMethod1;
-(void) mustImplementMethod2;
-(void) mustImplementMethod3;
-(void) mustImplementMethod4;
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment