如何成功将 Y​​AJLiOS JSON 框架导入到我的 iOS 项目中?

发布于 2024-10-31 19:55:37 字数 413 浏览 6 评论 0原文

我正在尝试在我的项目中使用 YAJLiOS 框架进行 JSON,因为我被告知这是最快的 JSON 框架。

无论如何,我已将名为 YAJLiOS.framework 的文件夹拖到 Link Binary With Libraries 窗口中,并将 -ObjC 和 -load_all 标记添加到 Targets 中 appNameTest 下的其他链接器标志中。

然后我就完成了;

#import <YAJLiOS/YAJL.h>

NSString *JSONString = @"[1, 2, 3]";
NSArray *arrayFromString = [JSONString yajl_JSON];

第二行抛出“程序收到信号:”SIGABRT“

这让我发疯,任何帮助表示赞赏。

I'm trying to use the YAJLiOS framework for JSON in my project as I've been told it's the fastest JSON framework to use.

Anyway I've dragged the folder called YAJLiOS.framework in to the Link Binary With Libraries window and added the -ObjC and -load_all tags to Other Linker Flags under appNameTest in Targets.

I've then done;

#import <YAJLiOS/YAJL.h>

NSString *JSONString = @"[1, 2, 3]";
NSArray *arrayFromString = [JSONString yajl_JSON];

and the second line is throwing "Program received signal: "SIGABRT"

It's driving me crazy, any help appreciated.

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文