我在iPhone 5s上测试我的应用,在此应用中我使用NSData.writeToURL(destinationUrl, atomically: true)
保存音频文件,但此行不起作用。
如何生成destinationUrl:
let documentsUrl = NSURL(fileURLWithPath: NSBundle.mainBundle().resourcePath!)
let fileName = remoteFileUrl.lastPathComponent
let destinationUrl = documentsUrl.URLByAppendingPathComponent(fileName)
在iOS模拟器中测试 - Everythins还可以
我该如何解决?
答案 0 :(得分:1)
您不得在运行时将任何内容写入应用程序包中 这将破坏应用程序的代码签名。