vote up 0 vote down star

For example, NSString documentation has

– initWithFormat:
– initWithFormat:arguments:
– initWithFormat:locale:
– initWithFormat:locale:arguments:
– initWithData:encoding:
+ stringWithFormat:
+ localizedStringWithFormat:
+ stringWithCharacters:length:
+ stringWithString:
+ stringWithCString:encoding:
+ stringWithUTF8String:

So what does it mean when a method name has a + at its left?

flag

Exact duplicate of stackoverflow.com/questions/406667/… – Cruachan Nov 1 at 16:17
No it isn't. This question refers strictly to browsing the online documentation, not writing code as the other question does. – bobobobo Nov 1 at 16:18

2 Answers

vote up 2 vote down check

method with + is a static method. so you will send message to class, not to it's instance.

link|flag
vote up 6 vote down

+ is for class methods (aka static methods in languages like C# and Java) - methods which relate to the type rather than a specific instance of the type.

- is for instance methods; methods which are called on a particular instance.

So for example, we have

- length
+ availableStringEncodings

because length refers to the length of a specific string, whereas availableStringEncodings just returns a list of the encodings available on the system.

This is just part of Objective-C - I suggest you find a good Objective-C book or tutorial.

link|flag
A more complete answer! But the first answer was submitted first. I've never been so torn in my life :S – bobobobo Nov 1 at 16:43
Actually I think my answer was just about submitted first, but it really doesn't matter :) – Jon Skeet Nov 1 at 17:35

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.