Possible Duplicate:
What do the plus and minus signs mean in Objective C next to a method?
As I continue to learn about iOS, I came across this, +(CCScene *)function {...}
in an early line of the example code I was working with. I understand that methods are implemented inObj-C with a -
, as in the following method: -(ObjectType*)function {...}
, but I am curious, what does the +
that precedes the apparent function implementation indicate?