Objective-C: what is the difference between - and + in:
From IPhone Dev FAQ
+ means it is a class method, which does not need an instance to call, and if it is called from an instance it will not change the instance.
- means it is an instance method.
