gpt4 book ai didi

ios - `URLByAppendingPathComponent` 不接受参数

转载 作者:行者123 更新时间:2023-11-28 18:11:10 24 4
gpt4 key购买 nike

我的程序中有以下内容:

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/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com