如何成功将 YAJLiOS JSON 框架导入到我的 iOS 项目中?
我正在尝试在我的项目中使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看看这个: http://rel.me/ 2009/06/15/yajl-json-parser-objective-c-bindings/
Check this out: http://rel.me/2009/06/15/yajl-json-parser-objective-c-bindings/