OStack程序员社区-中国程序员成长平台

标题: iphone - 使用 json-framework 提取 iphone 应用程序 [打印本页]

作者: 菜鸟教程小白    时间: 2022-12-13 11:56
标题: iphone - 使用 json-framework 提取 iphone 应用程序

当我尝试从该 json 字符串中提取值:18 total:

{"items": 
    [["3 lost"], 
     ["18 total"]
    ], 
"id": "26", 
"service": "bizi", 
"title": "my title"}

我得到的是:("18 total")

我正在使用 [[object valueForKey"items"] objectAtIndex:1];

我的错在哪里?



Best Answer-推荐答案


您的 JSON 代码正在返回该对象的另一个数组(包含在“[]”中)

试试:

[[[object valueForKey"items"] objectAtIndex:1] objectAtIndex:0];

关于iphone - 使用 json-framework 提取 iphone 应用程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9520958/






欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) Powered by Discuz! X3.4