- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的程序中有以下内容:
return [directory URLByAppendingPathComponent:fileName];
用调试器检查,fileName
是 __NSCFString * @"OA1aK7ikkYq5cK5"
(因此它包含 @"OA1aK7ikkYq5cK5"
)
directory
是通过以下方式检索的 URL:
[NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) objectAtIndex:0];
为什么会抛出这个:
* Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[NSPathStore2 URLByAppendingPathComponent:]: unrecognized selector sent to instance 0x10fa01de0
最佳答案
NSSearchPathForDirectoriesInDomains
返回一个字符串数组,而不是 URL。你应该打电话
NSURL *directory = [NSURL fileURLWithPath:[NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) objectAtIndex:0]];
编辑
只是想澄清一下,它是 NSPathStore2
对象的数组,它是 NSString
的子类。
关于ios - `URLByAppendingPathComponent` 不接受参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19385929/
我的具体问题是关于使用 URLByAppendingPathComponent 但该原则适用于许多其他类/方法和情况。 我有以下(缩写)代码: NSData *packageData = [[NSDa
我的程序中有以下内容: return [directory URLByAppendingPathComponent:fileName]; 用调试器检查,fileName 是 __NSCFString
我正在开发一个 cordova 应用程序并尝试将它生成的 swift 代码转换为 swift 3 语法,因为当我尝试构建它时它会产生错误。我有这个功能 init(configuration: WebA
我已阅读文档,看起来某些边缘情况可能有所不同(尾部斜杠等),但我不清楚这两种方法之间的主要区别是什么。 Component 和 Extension 这两个术语在 URL 世界中是否有除我以外的人理解的
在我的项目中,我将 jsondata 保存到名为 AllBooking.json 的本地 json 文件中。 代码: NSURL *fileURL =[[self applicationDocumen
我目前正在 Xcode 7 和 ios 9 上使用 SpriteKit,我遇到了建议的 URLByAppendingPathComponent 方法,该方法用于访问文件的本地 url 并结合 arch
我的错误是:“String”类型的值没有成员“URLByAppendingPathComponent” 我在这一行中遇到了错误: let savePath = documentDirectory.U
我正在关注 a basic tutorial关于在 Swift 中构建一个简单的 iOS 应用程序。 它是用 Swift 2.x 编写的,我使用 XCode 8 Beta 和 Swift 3。 本教程
我正在加载本地 html 页面并在 shouldStartLoadWithRequest: 中使用以下 url: ... /Library/Application%20Support/CDS/%3Fp
我是一名优秀的程序员,十分优秀!