排序进阶(NSPredicate、NSSortDescriptor 的使用)

一、NSPredicate的使用

1、> 的使用

NSPredicate*predicate = [NSPredicate predicateWithFormat:@"age>20"]; //创建NSPredicate对象 并定义查询条件

self.datas=[[self.datas filteredArrayUsingPredicate:predicate] mutableCopy]; //使用数组的filteredArrayUsingPredicate方法 获取符合我们指定条件的对象

[self.tableView reloadData];

2、INin)的使用

NSArray*array1 = [NSArray arrayWithObjects:@1,@2,@3,@4,@5,@6,@7,@8, nil];

NSArray*array2 = [NSArray arrayWithObjects:@4,@6, nil];

NSPredicate*predicate = [NSPredicate predicateWithFormat:@"SELF in%@",array2]; //SELF 代表本身 IN可以大写也可以小写

NSArray*temp =[array1 filteredArrayUsingPredicate:predicate]; //表示获取array2 和 array1中的交集

NSLog(@"temp ====\n%@",temp);

运行结果:4、6

3、除了IN 之外 BETWEEN可以获取一定范围的值:

NSArray *array1 = [NSArray arrayWithObjects:@100,@20,@3,@4,@4,@6,@7,@1, nil];

NSPredicate*predicate = [NSPredicate predicateWithFormat:@"SELF BETWEEN{1,20}"];

NSArray*temp =[array1 filteredArrayUsingPredicate:predicate];

NSLog(@"temp ====\n%@",temp);

运行结果:20、3、4、4、6、7、1

4、当然除了上面介绍的两个用法之外 还有其他的比较运算符>,<,==,>=,<=,!=。这里以等于号==为例:

NSArray*array1 = [NSArray arrayWithObjects:@100,@20,@3,@4,@4,@6,@7,@1, nil];

NSPredicate*predicate = [NSPredicate predicateWithFormat:@"SELF ==6"];

NSArray*temp =[array1 filteredArrayUsingPredicate:predicate];

NSLog(@"temp ====\n%@",temp);

运行结果:6

同时还有以下与字符串操作相关的关键词 :

BEGINSWITH  :以某个字符串开头

ENDSWITH     :以某个字符串结尾

CONTAINS      :是否包含某个字符串

同时这三个关键词后面还可以跟上一些格式符号 如:BEGINSWITH[cd] c表示不区分大小写 d表示不区分发音符号 cd就可以表示即不区分大小写 也不区分发音符号

NSArray*array1 = [NSArray arrayWithObjects:@"jack",@"anne",@"reserved",@"control",@"type",@"soure",@"version",nil];//查询出包含e这个字符的字符串NSPredicate *predicate = [NSPredicate predicateWithFormat:@"SELF CONTAINS[cd] 'E'"];

NSArray*temp =[array1 filteredArrayUsingPredicate:predicate];

NSLog(@"temp ====\n%@",temp);

运行结果:anne, reserved, type, soure, version

NSArray*array1 = [NSArray arrayWithObjects:@"jack",@"anne",@"reserved",@"control",@"type",@"soure",@"version",nil];//查询出以a这个字符开头的字符串NSPredicate *predicate = [NSPredicate predicateWithFormat:@"SELF BEGINSWITH[cd] 'a'"];

NSArray*temp =[array1 filteredArrayUsingPredicate:predicate];

NSLog(@"temp ====\n%@",temp);

运行结果:anne

NSArray*array1 = [NSArray arrayWithObjects:@"jack",@"anne",@"reserved",@"control",@"type",@"soure",@"version",nil];//查询出以e这个字符结尾的字符串NSPredicate *predicate = [NSPredicate predicateWithFormat:@"SELF ENDSWITH[cd] 'e'"];

NSArray*temp =[array1 filteredArrayUsingPredicate:predicate];

NSLog(@"temp ====\n%@",temp);

运行结果:anne, type,source

还有一个可能会用到的关键字 LIKE  他后面也可以写[cd]格式符号

NSArray*array1 = [NSArray arrayWithObjects:@"jack",@"anne",@"reserved",@"control",@"type",@"soure",@"version",nil];//查询出包含e这个字符的字符串NSPredicate *predicate = [NSPredicate predicateWithFormat:@"SELF like[cd] '*e*'"]; //*表示通配符

NSArray*temp =[array1 filteredArrayUsingPredicate:predicate];

NSLog(@"temp ====\n%@",temp);

运行结果:anne,reserved,type,soure,version


排序进阶(NSPredicate、NSSortDescriptor 的使用)_第1张图片

二、NSSortDescriptor 的使用

排序规则:1.首先按照年龄排序    2.如果年龄相同按照分数排序

创建两个描述者  一个是对年龄描述 一个是对分数描述 代码如下:

NSSortDescriptor *ageSD = [NSSortDescriptor sortDescriptorWithKey:@"age"ascending:YES];//ascending:YES 代表升序 如果为NO 代表降序

NSSortDescriptor*scoreSD=[NSSortDescriptor sortDescriptorWithKey:@"score"ascending:YES];

创建好这两个描述者之后 我们就可以调用数组的 sortedArrayUsingDescriptors 方法来实现排序

你可能感兴趣的:(排序进阶(NSPredicate、NSSortDescriptor 的使用))