删除数据源中选中的数据
2019-04-26 本文已影响0人
邓布利多教授
//从数据源中删除选中的数据
NSPredicate *thePredicate = [NSPredicate predicateWithFormat:@"NOT (SELF in %@)", mutDelete];
[self.dataSource filterUsingPredicate:thePredicate];
//从数据源中删除选中的数据
NSPredicate *thePredicate = [NSPredicate predicateWithFormat:@"NOT (SELF in %@)", mutDelete];
[self.dataSource filterUsingPredicate:thePredicate];