Skip to content

Instantly share code, notes, and snippets.

@jdelStrother
Created October 23, 2013 10:44
Show Gist options
  • Select an option

  • Save jdelStrother/7116417 to your computer and use it in GitHub Desktop.

Select an option

Save jdelStrother/7116417 to your computer and use it in GitHub Desktop.
@protocol FooDelegate;
@interface Foo : NSObject
@property id<FooDelegate> delegate;
@end
@protocol FooDelegate
-(void)foo:(Foo*)x didBar:(NSString*)bar;
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment