@kendell
Instead of:
@interface MyClass (private)
- (void) someMethod
- (void) someOtherMethod
@end
Use:
@interface MyClass ()
- (void) someMethod
- (void) someOtherMethod
@end
New in Objective-C 2.0.
Class extensions are described in Apple's Objc 2 Reference.
"Class extensions allow you to declare additional required API for a class in locations other than within the primary class @interface block"
So they're part of the actual class - and NOT a (private) category in addition to the class. Subtle but important difference.
