以下是 Objective-C 中私有方法的示例:
我的班级.m
#import "MyClass.h"
@interface MyClass (Private)
-(void) privateMethod:(NSString *)arg1 and: (NSString*)arg2;
@end
@implementation MyClass
-(void) publicMethod {
NSLog(@"public method\n");
/*call privateMethod with arg1, and arg2 ??? */
}
-(void) privateMethod:(NSString *)arg1 and: (NSString*)arg2{
NSLog(@"Arg1 %@ and Arg2 %@", arg1, arg2);
}
@end
我读过关于私有接口/方法声明的内容。但是如何从其他公共方法调用它们呢?我试过[self privateMethod:@"Foo" and: @"Bar"]
了,但看起来不对。