Difference between revisions of "Protocol"

From GNUstepWiki
Jump to navigation Jump to search
(Added implementation examples)
m (formatting error)
Line 37: Line 37:
  
 
     @interface MyClass <MyFormalProtocol>
 
     @interface MyClass <MyFormalProtocol>
 
+
   
 
     /* Methods in protocol */
 
     /* Methods in protocol */
 +
   
 
     -(void) someMethod;
 
     -(void) someMethod;
 
     -(id) someOtherMethod;
 
     -(id) someOtherMethod;
 
      
 
      
 
     /* Your methods */
 
     /* Your methods */
 
+
   
 
     @end     
 
     @end     
  
Line 52: Line 53:
 
and
 
and
  
     @implementation MyClass(MyInformalProtocol)
+
     @implementation MyClass (MyInformalProtocol)
  
 
Although the interface declaration is optional.
 
Although the interface declaration is optional.

Revision as of 07:43, 22 November 2005

A protocol is a declaration of a group of methods not associated with any particular class.

Formal Protocol

Formal Protocols are used to define the Interface for a set of methods, but not the implementation or any data members.

This is useful for defining an interface which objects will need to conform to in order to take advantage of some service or other.

Example:

   @protocol MyFormalProtocol
   
   -(void) someMethod;
   -(id) someOtherMethod;
   
   @end


Informal Protocol

Informal Protocols are constructs that allow you to share a common Interface between two classes without them having to inherit from any specific object (the notable exception being NSObject).

They are generally made with a category on NSObject that has no implementation associated with it.

Example:

   @interface NSObject (MyInformalProtocol)
   
   - (id) someMethod;
   - (void) anotherMethod;
   
   @end

Implementing Protocols

Formal and informal protocols take slightly different implementation paths. For formal protocols, you enclose the protocol name in less than/greater than signs e.g.:

   @interface MyClass <MyFormalProtocol>
   
   /* Methods in protocol */
   
   -(void) someMethod;
   -(id) someOtherMethod;
   
   /* Your methods */
   
   @end    

With informal protocols, you place the protocol name in brackets after your class name, both in the interface and implemenation i.e.:

   @interface MyClass (MyInformalProtocol)

and

   @implementation MyClass (MyInformalProtocol)

Although the interface declaration is optional.