Objective-c 宣言私有方法

Objective-c 声明私有方法@interface Controller : NSObject{ NSString *something} + (void)thisIsAStat

Objective-c 声明私有方法
@interface Controller : NSObject
{
NSString *something;
}

+ (void)thisIsAStaticMethod;
- (void)thisIsAnInstanceMethod;

@end
//声明私有的方法
@interface Controller (Private)

- (void)thisIsAPrivateMethod;

@end