self.dataList=[NSMutableArray arrayWithCapacity:1000]; for (NSInteger i=0; i<1000; i++) { [self.dataList addObject:[NSString stringWithFormat:@"010000----201200%ld",(long)i]]; } // Do any additional setup after loading the view from its nib. } -(
前言
首先,我们需要知道何谓谓词,让我们看看官方的解释:
The NSPredicate class is used to define logical conditions used to constrain a search either for a fetch or for in-memory filtering.
NSPredicate类是用来定义逻辑条件约束的获取或内存中的过滤搜索。
可以使用谓词来表示逻辑条件,用于描述对象持久性存储在内存中的对象过滤。其实意思就是:我是一个过滤器