Protocols:
*
Basic Protocol Definition
Defining a new protocol:
@protocol NewProtocol
- (void)protocolMethod:(id)argument;
- (id)anotherMethod;
@end