我是 tableViews 和字典的新手,我遇到了问题!在 ViewDidLoad 中,我正在初始化许多 MutableArray,并且正在使用 NSDictionary 添加数据。例子:
- (void)viewDidLoad {
nomosXiou=[[NSMutableArray alloc] init];
[nomosXiou addObject:[[NSDictionary alloc] initWithObjectsAndKeys:@"Mary",@"name",@"USA",@"country", nil]];
[nomosXiou addObject:[[NSDictionary alloc] initWithObjectsAndKeys:@"Peter",@"name",@"Germany",@"country", nil]];
[super viewDidLoad];
// Do any additional setup after loading the view.}
在之前的 ViewController 中,用户选择了 Country。基于该选择,我如何从我的数组中删除所有其他条目???
提前致谢...