我得到了这个 json 响应,我为 nsdictionary 创建了一个对象并保存在那里
NSDictionary* json = [NSJSONSerialization JSONObjectWithData:responseData options:kNilOptions error:&error];
下一步我保存为数组
NSArray *country=[json objectForKey:@"results"];
然后我在控制台中得到了以下结果。
2012-06-18 09:22:07.647 TableView[468:f803] (
{
"Countries" = Iceland;
"id"=9046567;
"name"=abceeeffdsg;
},
{
"Countries" = Greenland;
"id"=3524695;
"name"=gsfjgfsethju;
},
{
"Countries" = Switzerland;
"id"=4613583;
"name"=hdfkdgs;
)
但实际上我想在 UITableView 中显示这些数据。谁能帮我完成我的工作……谢谢你的好意……