标签:
//在编写子类的时候要重载父类的方法,如果子类不重写方法,则跑出异常让程序崩溃 - (void)superClassMethod { [NSException raise:NSInternalInconsistencyException format:@"It‘s an exception", NSStringFromSelector(_cmd)]; }
让子类必须重写父类的方法
原文地址:http://www.cnblogs.com/xiongzenghui/p/4709596.html