Swift:Call can throw, but it is not marked with 'try' and the error is not handled

前端之家收集整理的这篇文章主要介绍了Swift:Call can throw, but it is not marked with 'try' and the error is not handled前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

对习惯了Object-C语法的人来说,Swift有些语法格式真的差别挺大的

对于API的错误处理,他们也是不一样的机制,下面以AVAudioPlayer的一个初始化方法为例

- initWithContentsOfURL:error:

首先看下官方文档的定义:



在Object-C下可以直接传递NSError的参数来处理错误


但在Swift 2.2开始,它的错误处理必须放在do语句的catch子句中,本身方法必须放在try语句中



如果还是按照Object-C的思维调用


则会报如下的错误: "Call can throw,but it is not marked with 'try' and the error is not handled"

原文链接:https://www.f2er.com/swift/323262.html

猜你在找的Swift相关文章