我有2个阵列,
我想从另一个中移除它。
我不能使用removeObject:因为指针不同。
我正在根据属性删除对象(x.a == y.a)
如何根据其他数组中的属性删除对象?
谢谢,
答案 0 :(得分:4)
试试这个
NSMutableArray *arrFirst = [NSMutableArray arrayWithObjects:[NSDictionary dictionaryWithObjectsAndKeys:@"1",@"topic_id",@"abc",@"topic_name",nil],
[NSDictionary dictionaryWithObjectsAndKeys:@"2",@"topic_id",@"opq",@"topic_name",nil],
[NSDictionary dictionaryWithObjectsAndKeys:@"3",@"topic_id",@"xyz",@"topic_name",nil], nil];
NSArray *arrSec = [NSArray arrayWithObject:[NSDictionary dictionaryWithObjectsAndKeys:@"2",@"topic_id",@"opq",@"topic_name",nil]];
NSArray *temp = [arrFirst filteredArrayUsingPredicate:[NSPredicate predicateWithFormat:@"SELF IN %@",arrSec]];
[arrFirst removeObjectsInArray:temp];
NSLog(@"%@",arrFirst);
答案 1 :(得分:0)
试试这个例子
for(int i = 0; i< firstArray.count ; i++){
NSString *first = [firstArray objectAtIndex:i];
for(int j = 0; j< secondArray.count; j++){
NSString *second = [econdArray objectAtIndex:j];
if([first isEqualToString:second]){
/// Do your methods
}
}
}
答案 2 :(得分:0)
单个for循环就足够了,另一个想法是通过子类化或自己的类别来覆盖removeobject方法。
答案 3 :(得分:0)
BOOL GotOne = NO;
for(int i =0; i < mutableArray.count; i++)
{
NSArray *temp = [mutableArray objectAtIndex:i];
for(int j = 0; j < temp.count; j++)
{
//Do what u want with temp or check any condition
if(success)
{
GotOne = YES;
break;
}
}
if(GotOne)
{
[mutableArray removeObjectAtIndex:i];
GotOne = NO;
}
}