我遇到了像标题一样的问题。
let url = NSURL(fileURLWithPath: path!)
let filename = url.lastPathComponent
let data = NSData(contentsOfURL: url)
这些代码在模拟器上运行良好,但是当我在iphone5s上运行它时崩溃,因为函数NSData(contentsofurl:url)返回nil。
我检查这是好的:
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key>
<true/>
</dict>
感谢您的关注。