代码规范
2017-03-28 本文已影响14人
LeeDev
- 如果IOS 需要抛出异常可以通过下面的方法
- (instancetype)init
{
@throw [NSException exceptionWithName:NSInvalidArgumentException reason:@"Use -initWithCustom:" userInfo:nil];
}
- (instancetype)init
{
@throw [NSException exceptionWithName:NSInvalidArgumentException reason:@"Use -initWithCustom:" userInfo:nil];
}