protocol
#import <Foundation/Foundation.h> @protocol MyProtocol <NSObject> @required -(void) mustImplementMethod1; -(void) mustImplementMethod2; -(void) mustImplementMethod3; -(void) mustImplementMethod4; @end