What is the difference between methods that are declared with - and methods that are declared with +
e.g
- (void)methodname + (void)methodname
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)