zots
Re-member
im trying to understand the syntax of objective c. right now i'm doing the cocoa tutorials on oreillynet
http://www.oreillynet.com/pub/a/mac/2001/06/01/cocoa.html?page=2
my question is about this method declaration:
can someone break this down for me? what i understand is the method will return a variable of data type NSString. i dont understand (NSData *) before the method, what * indicates, or what aType is.
thanks
http://www.oreillynet.com/pub/a/mac/2001/06/01/cocoa.html?page=2
my question is about this method declaration:
Code:
- (NSData *)dataRepresentationOfType:(NSString *)aType
thanks