我写了两个包含相同方法(打印)的类。我想使用第二类对象访问第一类打印方法。我怎样才能做到这一点?
代码:
@interface classA : NSObject
-(void) print;
@end
@implementation classA
-(void) print
{
NSLog(@"hello");
}
@end
@interface classB : classA
-(void) print;
@end
@implementation classB
-(void) print{
NSLog(@"hey");
}
@end
现在我创建了第二类对象
classB *B = [classB alloc]init];