#import @protocol FooBarDelegate; @interface FooBar: UIViewController // Delegate property of the class @property (nonatomic, weak) id delegate; @end // Delegate @protocol FooBarDelegate @required -(void)requiredDelegateMethod; @optional -(void)optionalDelegateMethodOne; -(void)optionalDelegateMethodTwo:(NSString *)withArgument; @end