我是 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-推荐答案 strong>
您在同一范围内返回单元格两次,请尝试删除第一个 return cell; ,同时您正在调用表上的 reloadData for 循环;在这种情况下,表的数据源可能仍然是空的,所以在 for 循环之后调用 reloadData 。
编辑:
奇怪的是发生了什么,objectFromString must return NSArray 或 NSDictionary 但似乎指向 NSSet 。我还可以建议两件事:
您似乎没有使用 ARC,因为您在 UITableViewCell 上调用 autorelease 。在这种情况下,您在 viewDidLoad 中泄漏了 parser 和 json_string ,因此 release 它们。
确保调用 [super viewDidLoad]; (您没有在代码中执行此操作)。
关于iphone - ios - 如何从 UITableView 中的 JSON url 加载数据?,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/16852504/
|