Skip to content

Instantly share code, notes, and snippets.

@mkhl
Created May 21, 2009 14:58
Show Gist options
  • Save mkhl/115500 to your computer and use it in GitHub Desktop.
Save mkhl/115500 to your computer and use it in GitHub Desktop.
Define a protocol MyProtocol that inherits from the NSObject protocol
// Define a protocol MyProtocol that inherits from the NSObject protocol.
// This way, calls to NSObject messages (release, retain, …) don’t warn.
// Source: http://www.mobileorchard.com/idprotocol-retainrelease-and-protocol-inheritance/
@protocol MyProtocol<NSObject>
- (void)someMessage;
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment