instance methods use an instance of a class.
@interface MyTestClass : NSObject
- (void)testInstanceMethod;
@end
They could then be used like so:
MyTestClass *object = [[MyTestClass alloc] init];
[object testInstanceMethod];
Class method can be used with just the class name.
@inte...