In your Class.m implementation file, you can add an interface section at the beginning and declare private functions there:
@interface YourClassName (private)
-(void)aPrivateMethod:(NSString*)aParameter;
...
@end
@implementation YourClassName
...
@end
Theye source
share