摘要: 1、@try 语句 @try { // 可能会抛出异常的代码块 } @catch (NSException *exception) { // 处理 @try 块抛出的异常 NSLog(@"%@, %@", [exception name], [exception reason]); } @final 阅读全文
posted @ 2018-08-21 21:33 CH520 阅读(794) 评论(0) 推荐(0) 编辑