Class methods are usually used to create instances of that class
For example, [NSString stringWithFormat:@"SomeParameter"];
returns an NSString
instance with the parameter that is sent to it. Hence, because it is a Class method that returns an object of its type, it is also called a convenience method.