• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

iphone - ios - 如何从 UITableView 中的 JSON url 加载数据?

[复制链接]
菜鸟教程小白 发表于 2022-12-13 02:44:22 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

我是 iPhone 开发的新手,我正在尝试从 UITableview 中的 JSON Url 绑定(bind)数据,但在下面的代码中出现错误。

- (void)viewDidLoad
{

SBJsonParser *parser = [[SBJsonParser alloc] init];
NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL URLWithString"http://80f237c226fa45aaa09a5f5c82339d46.cloudapp.net/DownloadService.svc/Courses"]];
NSData *response = [NSURLConnection sendSynchronousRequest:request returningResponse:nil error:nil];
NSString *json_string = [[NSString alloc] initWithData:response encoding:NSUTF8StringEncoding];
statuses = [parser objectWithString:json_string error:nil];
[self.dropdownTblView reloadData];
for (NSDictionary *status in statuses) 
{
    _altTitle = [status valueForKey"Title"];
    NSLog(@"Title %@",_altTitle);
}

- (NSInteger)numberOfSectionsInTableViewUITableView *)tableView
{
return 1;
}

- (NSInteger)tableViewUITableView *)tableView numberOfRowsInSectionNSInteger)section
{
   NSLog(@"%d",[statuses count]);
   return [statuses count];

}

- (UITableViewCell *)tableViewUITableView *)tableView cellForRowAtIndexPathNSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";

UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil)
{
    cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
}
return cell;

 //Here I'm getting an error    
id obj = [statuses objectAtIndex:indexPath.row];
NSString *name = [obj valueForKey"Title"];
cell.textLabel.text =name;
return cell;
}

这是我的 JSON

[
  {
    "Id": 1,
    "Title": "Tamil to English",
    "AltTitle": "த|மி|ழ்| |மூ|ல|ம்| |ஆ|ங்|கி|ல|ம்",
    "Description": "Learn English through Tamil",
    "Code": 1,
    "Version": "1.0",
    "SourceLanguageIndicator": "அ",
    "TargetLanguageIndicator": "A",
    "SourceLanguageCode": "ta",
    "TargetLanguageCode": "en",
    "Updated": "2013-02-21T03:33:19.6601651+00:00"
  }    
]    

有什么想法吗?提前致谢。



Best Answer-推荐答案


您在同一范围内返回单元格两次,请尝试删除第一个 return cell;,同时您正在调用表上的 reloadData for 循环;在这种情况下,表的数据源可能仍然是空的,所以在 for 循环之后调用 reloadData

编辑: 奇怪的是发生了什么,objectFromString must return NSArrayNSDictionary 但似乎指向 NSSet。我还可以建议两件事:

  1. 您似乎没有使用 ARC,因为您在 UITableViewCell 上调用 autorelease。在这种情况下,您在 viewDidLoad 中泄漏了 parserjson_string,因此 release 它们。

  2. 确保调用 [super viewDidLoad];(您没有在代码中执行此操作)。

关于iphone - ios - 如何从 UITableView 中的 JSON url 加载数据?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16852504/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap