I am very new in objective c and in xcode. I would like to know that what are the + and - signs next to a method definition mean.
- (void)loadPluginsAtPath:(NSString*)pluginPath errors:(NSArray **)errors;
|
I am very new in objective c and in xcode. I would like to know that what are the
|
||||
|
|
|
E.g.
There's another question dealing with the difference between class and instance methods. |
|||||||||||||||||||||
|
|
+ methods are class methods - that is, methods which do not have access to an instances properties. Used for methods like alloc or helper methods for the class that do not require access to instance variables - methods are instance methods - relate to a single instance of an object. Usually used for most methods on a class. See the Language Specification for more detail. |
|||
|
|
|
the objective c programming guide is good resource to start with |
|||
|
|