iOS 抛出异常@throw

有时候我们项目需求,需要人为的抛出异常,使程序崩溃退出,这时候就用到@throw了

    @throw [NSException exceptionWithName:@"context show" reason:@"crush's reason" userInfo:nil];

运行程序就会出现如下打印结果:

 Terminating app due to uncaught exception 'context show', reason: 'crush's reason'

你可能感兴趣的:(iOS 抛出异常@throw)