Skip to content

Instantly share code, notes, and snippets.

@mutekinootoko
Created February 22, 2015 10:47
Show Gist options
  • Save mutekinootoko/338152fa32661842316b to your computer and use it in GitHub Desktop.
Save mutekinootoko/338152fa32661842316b to your computer and use it in GitHub Desktop.
delegate example
@class MyClass ;
@protocol MyClassDelegate
@optional
- (void) myClassStatusChange:(MyClassStatusChangeRequest*) changeRequest;
@end
@interface MyClass : ...
@property (weak, nonatomic) id<MyClassDelegate> delegate;
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment