在 Xcode 4 中导入 Objective-C JSON 框架
安装 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您已将文件放置在“类”组下并且未采取任何进一步操作,则它们位于项目目录的根目录中。因此,将其导入为
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
我认为您表示您正在从 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...