我创建了一个将列出名称的应用程序。每当点击名称时,我都想返回特定名称的年龄。我正在动态添加姓名和年龄。如果我使用键值对,则检索我猜想的值会更容易。有人可以在这里告诉我如何使用KeyValue(NSDictionary)对吗?

最佳答案

NSDictionary *nameAgePair=[[NSDictionary alloc]init];
[nameAgePair setValue:@"30" forKey:@"Name1"];
[nameAgePair setValue:@"25" forKey:@"Name2"];

NSArray *arr=[nameAgePair allKeys];


- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{

    UITableViewCell *cell = [[tableView dequeueReusableCellWithIdentifier:@"cell"] autorelease];

     UILabel *lbl=[[UILabel alloc]initWithFrame:CGRectMake(0, 0, cell.frame.size.width, cell.frame.size.height)];
     [lbl setText:[arr objectAtIndex:indexPath.row]];
     [cell.contentView addSubview:lbl];

}


您可以像这样访问选定的值。

[nameAgePair objectForKey:@"selected row"];


注意:如果您使用键值编码,则您的键(名称)应该是唯一的。

关于iphone - 对UITableView使用键值对,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/13085595/

10-13 01:09