Skip to content

Instantly share code, notes, and snippets.

@tempos21ios
Created April 15, 2013 06:57
Show Gist options
  • Save tempos21ios/5386226 to your computer and use it in GitHub Desktop.
Save tempos21ios/5386226 to your computer and use it in GitHub Desktop.
Protocolo delegate (ARC)
@protocol MyClassDelegate <NSObject>
//(...)
@optional
//(...)
@end
@interface MyClass : NSObject
@property (nonatomic, weak) id <MyClassDelegate> delegate;
// (...)
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment