在 Xcode 4 中导入 Objective-C JSON 框架

发布于 2024-10-31 10:18:11 字数 323 浏览 1 评论 0原文

安装 JSON 框架 的说明似乎适用于旧版本的 Xcode。我对 Xcode 相对不熟悉,我不知道如何正确地将框架导入到我的项目中。我选择了下载中的“Classes”文件夹(JSON.h、NSObject+JSON.h 等)中的所有文件,将它们拖到项目的主要区域中,并添加了 #import < ;JSON/JSON.h> 到我的 ViewController 的 .h 和 .m 文件,并且我收到 JSON/JSON.h 没有此类文件或目录错误

我在这里做错了什么?

The instructions for installing the JSON Framework seem to be for older versions of Xcode. I'm relatively unfamiliar with Xcode and I can't figure out how to properly import the framework into my project. I selected all of the files in the "Classes" folder (JSON.h, NSObject+JSON.h, etc.) that comes in the download, dragged them into the main area of my project, and added #import <JSON/JSON.h> to my ViewController's .h and .m files, and I get a No such file or directory error for JSON/JSON.h

What am I doing incorrectly here?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

書生途 2024-11-07 10:18:11

如果您已将文件放置在“类”组下并且未采取任何进一步操作,则它们位于项目目录的根目录中。因此,将其导入为

#import "JSON.h"

If you’ve placed the files under the Classes group and haven’t taken any further action, they’re at the root of your project directory. As such, import it as

#import "JSON.h"
穿越时光隧道 2024-11-07 10:18:11

我认为您表示您正在从 JSON 文件夹导入 JSON.h,从您的描述来看,您的文件夹中没有这些内容......

I think you're indicating that you're importing JSON.h from the JSON folder, and it sounds from your description you don't have those in a folder...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文