iphone - 使用 json-framework 提取 iphone 应用程序
<p><p>当我尝试从该 json 字符串中提取值:<code>18 total</code>:</p>
<pre><code>{"items":
[["3 lost"],
["18 total"]
],
"id": "26",
"service": "bizi",
"title": "my title"}
</code></pre>
<p>我得到的是:<code>("18 total")</code></p>
<p>我正在使用 <code>[ objectAtIndex:1];</code></p>
<p>我的错在哪里?</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>您的 JSON 代码正在返回该对象的另一个数组(包含在“[]”中)</p>
<p>试试:</p>
<pre><code>[[ objectAtIndex:1] objectAtIndex:0];
</code></pre></p>
<p style="font-size: 20px;">关于iphone - 使用 json-framework 提取 iphone 应用程序,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/9520958/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/9520958/
</a>
</p>
页:
[1]