Tagged with Method signature

Objective-C Method signature

Notes on Objective-C Method Signatures I’m still not finding the Cocoa Touch language ‘natural’ so I decided to make a few notes and make sone examples to cement my understating. Examples: – (id)initWithInt:(int)value; defines a method initWithInt that returns a general object (an id) and takes one integer argument. Objective-C only requires a type in … Continue reading