Is there a way to call a class method from another method within the same class?
For example:
+classMethodA{ } +classMethodB{ //I would like to
In objective C 'self' is used to call other methods within the same class.
So you just need to write
+classMethodB{ [self classMethodA]; }