我如何从NSDictionary对象NSLog一个字符串?

时间:2012-02-12 17:08:06

标签: objective-c nslog

与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);

之类的东西

谢谢!

1 个答案:

答案 0 :(得分:1)

如果我理解了你的要求,那么应该这样做:

NSLog(@"%@", [item objectForKey:@"title"]);

如果由于对象可能不是NSString而给你一个编译器警告,那么你可以这样做:

NSString *title = [item objectForKey:@"title"];
NSLog(@"%@", title);

如果我误解了你的问题,请告诉我,我会相应地更正我的答案。