我正在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模拟器中测试时-一切都很好

我该如何解决?

最佳答案

您不得在运行时将任何内容写入应用程序捆绑包。
这将破坏应用程序的代码签名。

10-07 22:41