iPhone JSON 解析
我是 iPhone 应用程序开发新手。 我需要一些帮助...我想解析一些数据(银行名称)并将它们显示到 UITableView
中。我正在使用此代码来解析 JSON
格式的银行名称:
NSArray *atmDAta = [responseString JSONValue];
for (NSDictionary *dict in atmDAta) {
NSLog(@"%@", [dict objectForKey:@"Name"]);
[listOfItems addObject:[dict objectForKey:@"Name"]];
}
但是当我尝试在表中显示它们时,如下所示:
cell.textLabel.text = [listOfItems objectAtIndex:indexPath.row];
return cell;
这不会在表中显示任何内容,但 NSlog 正在工作并且显示 xcode 日志中的银行名称。请帮忙。
I am new in iPhone app Development.
I need some help... I want to parse some data (Banks Name) and show them into a UITableView
. I'm using this code to Parse Banks Name which is in JSON
Format :
NSArray *atmDAta = [responseString JSONValue];
for (NSDictionary *dict in atmDAta) {
NSLog(@"%@", [dict objectForKey:@"Name"]);
[listOfItems addObject:[dict objectForKey:@"Name"]];
}
But when i try to show them in the the Table like this :
cell.textLabel.text = [listOfItems objectAtIndex:indexPath.row];
return cell;
This will show me nothing in the table but NSlog is working and show me the banks name in the xcode log. Please help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
完成 json 解析后调用
[yourtable reloadData];
Call
[yourtable reloadData];
when you finished json parsing请参考此代码进行 JSON 解析
从此代码中,您将从 JSON 解析中获得最新的板球得分......
Please refer this code for JSON Parsing
From this code you will get Latest cricket score from JSON Parsing....
@Rocky 尝试一下
在 .h 中声明
NSArray *listOfItems;
并在 .m 中使用它
,我正在使用类别
干杯!
@Rocky Give this a try
Declare in .h
NSArray *listOfItems;
and use this in .m
Where I am using a Category
Cheers!!!
添加数组后,您可以执行 [listOfItemsretain]
After adding array you can do [listOfItems retain]