我有一个带有可变数量的nsdictionary的数组。
NSDictionary * name1 = @{@"name" : @"anthony",
@"born" : @(1989),
@"lives" : @(5)};
NSDictionary *name2 = @{@"name" : @"pietro",
@"born" : @(1982),
@"lives" : @(2)};
NSArray *people = @[anthony, pietro];
基本上我需要在nsdictionary中使用“name”中的名称填充表格的单元格。 我怎么能这样做?
答案 0 :(得分:0)
假设您的代码段中所有名称词典都在数组self.people中。
NSString *nameForCell=((NSDictionary *)self.people[indexPath.row])[@"name"];