与Json合作,我怎么能“ NSlog ”只有这段代码中的标题:
NSDictionary *item = [tableData objectAtIndex:[indexPath row]];
// Set text on textLabel
[[cell textLabel] setText:[item objectForKey:@"title"]];
// Set text on detailTextLabel
[[cell detailTextLabel] setText:[item objectForKey:@"description"]];
像NSlog(@"%@", title);
?
谢谢!
答案 0 :(得分:1)
如果我理解了你的要求,那么应该这样做:
NSLog(@"%@", [item objectForKey:@"title"]);
如果由于对象可能不是NSString而给你一个编译器警告,那么你可以这样做:
NSString *title = [item objectForKey:@"title"];
NSLog(@"%@", title);
如果我误解了你的问题,请告诉我,我会相应地更正我的答案。