我想解析超过 500 条评论的 reddit 帖子的评论。比如这个:http ://www.reddit.com/comments/xu11o json url是:http ://www.reddit.com/comments/xu11o.json
我正在使用 SBJson 来实现这一点。当我尝试使用此代码获取 NSArray 时:
NSString* response = [request responseString];
NSArray* responseArray = [response JSONValue];
我收到此错误消息:-JSONValue failed. Error is: Input depth exceeds max depth of 32
将深度更改为更高的数字(例如 100)会使我的应用程序崩溃。
如果 reddit 帖子只有 20 条评论,我会得到 NSArray 并可以成功显示它们。
我必须改变什么才能获得 NSArray?