/ Published in: Objective C
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
+ (void)aClassMethod; - (void)anInstanceMethod; @end [MyClass aClassMethod]; MyClass *object = [[MyClass alloc] init]; [object anInstanceMethod];