gpt4 book ai didi

iOS pathForResource 在某个目录下json时有提示错误

转载 作者:行者123 更新时间:2023-11-28 13:16:15 25 4
gpt4 key购买 nike

我已将我的 json 文件 (targetJson) 放在 json_container 文件夹中。但是 NSBundle 无法使用“inDirectory”读取。

文件位置:

projectName_folder/projectName_folder/json_container/targetJson.json

swift(试过):

let path = NSBundle.mainBundle().pathForResource("targetJson", ofType: "json", inDirectory: "projectName_folder/projectName_folder/json_container")

let path = NSBundle.mainBundle().pathForResource("targetJson", ofType: "json", inDirectory: "projectName_folder/json_container")

let path = NSBundle.mainBundle().pathForResource("targetJson", ofType: "json", inDirectory: "json_container")

非常感谢您的帮助

最佳答案

你只需要使用:

let path = NSBundle.mainBundle().pathForResource("targetJson", ofType: "json", inDirectory: nil)

无需在此处指定文件夹,除非您将该文件夹添加为引用。只需打开您的应用程序包内容,您就可以看到文件在应用程序中的确切位置。如果不添加该文件夹作为引用,该文件将位于应用程序包的根文件夹中。

关于iOS pathForResource 在某个目录下json时有提示错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28894256/

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