@try - @catch编译时报错
2019-02-01 本文已影响0人
智狸
在项目中使用@try - @catch编译时报错,原因是因为你没有打开异常配置信息。
Cannot use '@try' with Objective-C exceptions disabled
需要设置(Xcode10.1为例):
TARGET -> Build Settings -> Apple LLVM 9.0 - Language - Objective C -> Enable Objective-C Exceptions
为:Yes 即可。