What is the difference between methods that are declared with - and methods that are declared with +
e.g
- (void)methodname
+ (void)methodname
|
What is the difference between methods that are declared with - and methods that are declared with + e.g
|
||||
|
|
|
Methods prefixed with
Methods prefixed with
|
|||||||||||||
|
|
According to this page:
See this SO question for more information. |
|||
|
|
|
minus are instance methods (only accessible via an instantiated object) plus are class methods (like in Java Math.abs(), you can use it without an instantited object) |
||||
|
|
|
The first is an instance method and the second is a class method. You should read Apple's Objective-C documentation to learn about the difference. |
|||
|
|