(Swift报错提示)dataWithContentsOfURL

前端之家收集整理的这篇文章主要介绍了(Swift报错提示)dataWithContentsOfURL前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
xcode 6.1 swift 使用 dataWithContentsOfURL方法已改变(已经解决) 之前beta版本编译通过的工程现在使用这个的都报错,而去自动填充没有dataWithContentsOfURL =============更新=============== 找到解决办法,看了下苹果的文档是因为改了 现在直接使用init(contentsOfURL:) 就行啦 以前写为 var data = NSData.dataWithContentsOfURL(url!,options: NSDataReadingOptions.DataReadingMapped,error: nil) 现在写为 var data = NSData(contentsOfURL: url!,options: NSDataReadingOptions(),error: nil) 原文链接:https://www.f2er.com/swift/325299.html

猜你在找的Swift相关文章