我有一个 iPhone 应用程序,其中有一个NSMutableArray
字典。选择表格的每一行时,我正在使用删除字典
if (indexPath.row <[self.newmessagearrays count])
{
[messagearrays removeObjectAtIndex:indexPath.row];
}
我有一个场景,当点击该行时,我想删除我的“from id”键相同的所有字典。我试过这样,但没有效果:
NSPredicate * pr = [NSPredicate predicateWithFormat:@"userid == %@",fromidstring];
[messagearrays filterUsingPredicate:pr];