- (void)doesNotRecognizeSelector:(SEL)aSelector

这个方法比较有意思,只是程序主动抛出一个-[Student sayHi]: unrecognized selector sent to instance 0x7fc370798e80不能识别方法的异常
这个方法有什么用呢?
有一个Person类, 其中一个sayHi方法,我们要求所有子类都要重写(当然我们可以使用协议),我们就可以这样写

@implementation Person
- (void)sayHi {
    NSLog(@"if you not override this method, you will get a exception");
    [self doesNotRecognizeSelector:_cmd];
}
@end

如果子类没有重写父类方法,就会调用到该方法,此时就会抛出异常,打上异常断点,程序会自动定位到这一行

2015-09-28 10:21:04.099 MethodForSelector[857:352928] -[Student sayHi]: unrecognized selector sent to instance 0x7fc370798e80
(lldb) ```,当然,这并不是一个好方法。

你可能感兴趣的:(- (void)doesNotRecognizeSelector:(SEL)aSelector)