Skip to content

Instantly share code, notes, and snippets.

@MaximAlien
Created December 3, 2015 21:56
Show Gist options
  • Save MaximAlien/7b7efa5a4f477f598915 to your computer and use it in GitHub Desktop.
Save MaximAlien/7b7efa5a4f477f598915 to your computer and use it in GitHub Desktop.
[iOS] Delegation example
@protocol ExampleViewDelegate <NSObject>
- (void)doAction;
@end
@interface ExampleView : UIView
@property (assign) id<ExampleViewDelegate> delegate;
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment