作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如果我的 url 末尾有空格,它会因 EXC_BAD_INSTRUCTION 而崩溃。
我原以为 canOpenURL 会捕获错误的 URL,但事实并非如此。
if let strurl = cell.url{
if (UIApplication.sharedApplication().canOpenURL(NSURL(string:strurl)!)) {
UIApplication.sharedApplication().openURL(NSURL(string:strurl)!);
}
}
在我的例子中,末尾带有额外空格的 URL 会崩溃。我可以修剪空白区域,但是其他的呢?是否有适当的方法来捕获此错误?
最佳答案
您正在强制解包 NSURL
,如果它恰好为 nil
,则会导致应用程序崩溃。要检查 URL 的有效性,您还应该对 URL 本身使用 if let
。
if let strurl = cell.url,
let url = NSURL(string: strurl) {
if (UIApplication.sharedApplication().canOpenURL(url) {
UIApplication.sharedApplication().openURL(url)
}
}
关于ios - 如何在 openURL swift 中捕获错误的 URL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32120916/
我是一名优秀的程序员,十分优秀!