0

我有 2 个数组,如下所示:

Array A  ( 

{ title="A",id=1 }, {title="B",id=2},{title="c",id=3}

)

Array B  ( 

{ title="A",id=1 }, {title="B",id=2},{title="c",id=3}

)

现在,我想combine this arrays& 当我尝试从组合数组中获取值时,我想知道它来自数组 A 还是数组 B。

我怎样才能做到这一点?

我应该使用字典而不是数组吗?

4

1 回答 1

3

的,你应该使用Dictionary代替Array。将数组设置为对象ArrayName

示例代码:

NSMutableDictionary *dict = [[NSMutableDictionary alloc] initWithObjectsAndKeys:arrayA,@"ArrayA",arrayB,@"ArrayB", nil];
NSLog(@"dict :: %@",dict);

更新 :

要在单元格中显示标题IDTableView

yourTitleLabel.text = [[[dict objectForKey:@"ArrayA"] objectAtIndex:indexPath.row] objectForKey:@"title"];
yourIdLabel.text = [[[dict objectForKey:@"ArrayA"] objectAtIndex:indexPath.row] objectForKey:@"id"];
于 2013-09-05T11:57:43.267 回答