iOS中谓词(NSPredicate)的基本入门使用教程
前言
首先,我们需要知道何谓谓词,让我们看看官方的解释:
the nspredicate class is used to define logical conditions used to constrain a search either for a fetch or for in-memory filtering.
nspredicate类是用来定义逻辑条件约束的获取或内存中的过滤搜索。
可以使用谓词来表示逻辑条件,用于描述对象持久性存储在内存中的对象过滤。其实意思就是:我是一个过滤器,不符合条件的都滚开。
一、nspredicate的基本语法
我们使用一门语言,无论是外语还是计算机语言,总是从语法开始的,这样我们才能正确的把握逻辑。所以我们从语法开始说起。在这部分我们仅关心其语法的使用
只要我们使用谓词(nspredicate)都需要为谓词定义谓词表达式,而这个表达式必须是一个返回bool的值。
谓词表达式由表达式、运算符和值构成。
1.比较运算符
比较运算符如下
=、==:判断两个表达式是否相等,在谓词中=和==是相同的意思都是判断,而没有赋值这一说
nsnumber *testnumber = @123; nspredicate *predicate = [nspredicate predicatewithformat:@"self = 123"]; if ([predicate evaluatewithobject:testnumber]) { nslog(@"teststring:%@", testnumber); }
我们可以看到输出的内容为:
2016-01-07 11:12:27.281 predictedemo[4130:80412] teststring:123
- >=,=>:判断左边表达式的值是否大于或等于右边表达式的值
- <=,=<:判断左边表达式的值是否小于或等于右边表达式的值
- >:判断左边表达式的值是否大于右边表达式的值
- <:判断左边表达式的值是否小于右边表达式的值
- !=、<>:判断两个表达式是否不相等
- between:between表达式必须满足表达式 between {下限,上限}的格式,要求该表达式必须大于或等于下限,并小于或等于上限
nsnumber *testnumber = @123; nspredicate *predicate = [nspredicate predicatewithformat:@"self between {100, 200}"]; if ([predicate evaluatewithobject:testnumber]) { nslog(@"teststring:%@", testnumber); } else { nslog(@"不符合条件"); }
输出结果为:
2016-01-07 11:20:39.921 predictedemo[4366:85408] teststring:123
2.逻辑运算符
and、&&:逻辑与,要求两个表达式的值都为yes时,结果才为yes。
nsarray *testarray = @[@1, @2, @3, @4, @5, @6]; nspredicate *predicate = [nspredicate predicatewithformat:@"self > 2 && self < 5"]; nsarray *filterarray = [testarray filteredarrayusingpredicate:predicate]; nslog(@"filterarray:%@", filterarray);
输出结果为:
2016-01-07 11:27:01.885 predictedemo[4531:89537] filterarray:(
3,
4
)
- or、||:逻辑或,要求其中一个表达式为yes时,结果就是yes
- not、 !:逻辑非,对原有的表达式取反
3.字符串比较运算符
- beginswith:检查某个字符串是否以指定的字符串开头(如判断字符串是否以a开头:beginswith 'a')
- endswith:检查某个字符串是否以指定的字符串结尾
- contains:检查某个字符串是否包含指定的字符串
- like:检查某个字符串是否匹配指定的字符串模板。其之后可以跟?代表一个字符和*代表任意多个字符两个通配符。比如"name like '*ac*'",这表示name的值中包含ac则返回yes;"name like '?ac*'",表示name的第2、3个字符为ac时返回yes。
- matches:检查某个字符串是否匹配指定的正则表达式。虽然正则表达式的执行效率是最低的,但其功能是最强大的,也是我们最常用的。
注:字符串比较都是区分大小写和重音符号的。如:café和cafe是不一样的,cafe和cafe也是不一样的。如果希望字符串比较运算不区分大小写和重音符号,请在这些运算符后使用[c],[d]选项。其中[c]是不区分大小写,[d]是不区分重音符号,其写在字符串比较运算符之后,比如:name like[cd] 'cafe',那么不论name是cafe、cafe还是café上面的表达式都会返回yes。
4.集合运算符
- any、some:集合中任意一个元素满足条件,就返回yes。
- all:集合中所有元素都满足条件,才返回yes。
- none:集合中没有任何元素满足条件就返回yes。如:none person.age < 18,表示person集合中所有元素的age>=18时,才返回yes。
- in:等价于sql语句中的in运算符,只有当左边表达式或值出现在右边的集合中才会返回yes。我们通过一个例子来看一下
nsarray *filterarray = @[@"ab", @"abc"]; nsarray *array = @[@"a", @"ab", @"abc", @"abcd"]; nspredicate *predicate = [nspredicate predicatewithformat:@"not (self in %@)", filterarray]; nslog(@"%@", [array filteredarrayusingpredicate:predicate]);
代码的作用是将array中和filterarray中相同的元素去除,输出为:
2016-01-07 13:17:43.669 predictedemo[6701:136206] (
a,
abcd
)
- array[index]:返回array数组中index索引处的元素
- array[first]:返回array数组中第一个元素
- array[last]:返回array数组中最后一个元素
- array[size]:返回array数组中元素的个数
5.直接量
在谓词表达式中可以使用如下直接量
- false、no:代表逻辑假
- true、yes:代表逻辑真
- null、nil:代表空值
- self:代表正在被判断的对象自身
- "string"或'string':代表字符串
- 数组:和c中的写法相同,如:{'one', 'two', 'three'}。
- 数值:包括证书、小数和科学计数法表示的形式
- 十六进制数:0x开头的数字
- 八进制:0o开头的数字
- 二进制:0b开头的数字
6.保留字
下列单词都是保留字(不论大小写)
and、or、in、not、all、any、some、none、like、caseinsensitive、ci、matches、contains、beginswith、endswith、between、null、nil、self、true、yes、false、no、first、last、size、anykey、subquery、cast、truepredicate、falsepredicate
注:虽然大小写都可以,但是更推荐使用大写来表示这些保留字
二、谓词的用法
1.定义谓词
一般我们使用下列方法来定义一个谓词
nspredicate *predicate = [nspredicate predicatewithformat:<#(nonnull nsstring *), ...#>];
下面我们通过几个简单的例子来看看它该如何使用:
首先我们需要定义一个模型,因为示例中需要用到它
zlpersonmodel.h
#import <foundation/foundation.h> typedef ns_enum(nsinteger, zlpersonsex) { zlpersonsexmale = 0, zlpersonsexfamale }; @interface zlpersonmodel : nsobject /** nsstring 姓名 */ @property (nonatomic, copy) nsstring *name; /** nsuinteger 年龄 */ @property (nonatomic, assign, readonly) nsuinteger age; /** zlpersonsex 性别 */ @property (nonatomic, assign, readonly) zlpersonsex sex; + (instancetype)personwithname:(nsstring *)name age:(nsuinteger)age sex:(zlpersonsex)sex; @end
zlpersonmodel.m
#import "zlpersonmodel.h" @implementation zlpersonmodel - (instancetype)initwithname:(nsstring *)name age:(nsuinteger)age sex:(zlpersonsex)sex { if (self = [super init]) { _name = name; _age = age; _sex = sex; } return self; } + (instancetype)personwithname:(nsstring *)name age:(nsuinteger)age sex:(zlpersonsex)sex { return [[self alloc] initwithname:name age:age sex:sex]; } - (nsstring *)description { return [nsstring stringwithformat:@"[name = %@, age = %ld, sex = %ld]", self.name, self.age, self.sex]; } @end
下面让我们进入正题
例一:(最简单的使用)
zlpersonmodel *sunnyzl = [zlpersonmodel personwithname:@"sunnyzl" age:29 sex:zlpersonsexmale]; zlpersonmodel *jack = [zlpersonmodel personwithname:@"jack" age:22 sex:zlpersonsexmale]; // 首先我们来看一些简单的使用 // 1.判断姓名是否是以s开头的 nspredicate *pred1 = [nspredicate predicatewithformat:@"name like 's*'"]; // 输出为:sunnyzl:1, jack:0 nslog(@"sunnyzl:%d, jack:%d", [pred1 evaluatewithobject:sunnyzl], [pred1 evaluatewithobject:jack]); // 2.判断年龄是否大于25 nspredicate *pred2 = [nspredicate predicatewithformat:@"age > 25"]; // 输出为:sunnyzl的年龄是否大于25:1, jack的年龄是否大于25:0 nslog(@"sunnyzl的年龄是否大于25:%d, jack的年龄是否大于25:%d", [pred2 evaluatewithobject:sunnyzl], [pred2 evaluatewithobject:jack]);
看到这里我们会发现evaluatewithobject:方法返回的是一个bool值,如果符合条件就返回yes,不符合就返回no。而即使是最简单的使用也有一些大用处,比如以前我们写判断手机号码、邮编等等,像我就喜欢用john engelhart大神的regexkitlite,然而由于年代久远需要导入libicucore.dylib库(xcode7为libicucore.tbd)且由于是mrc又需要添加-fno-objc-arc,至此我们才能使用。然而使用谓词让我们可以用同样简洁的代码实现相同的功能
例二:
(判断手机号是否正确)
- (bool)checkphonenumber:(nsstring *)phonenumber { nsstring *regex = @"^[1][3-8]\\d{9}$"; nspredicate *pred = [nspredicate predicatewithformat:@"self matches %@", regex]; return [pred evaluatewithobject:phonenumber]; }
例三:检测字符串中是否有特殊字符
- (bool)checkspecialcharacter:(nsstring *)string { nsstring *regex = @"[`~!@#$^&*()=|{}':;',\\[\\].<>/?~!@#¥……&*()——|{}【】‘;:”“'。,、?]+"; nspredicate *pred = [nspredicate predicatewithformat:@"self matches %@", regex]; return [pred evaluatewithobject:string]; }
2.使用谓词过滤集合
此部分是我们需要掌握的重点,因为从这里我们就可以看到谓词的真正的强大之处
其实谓词本身就代表了一个逻辑条件,计算谓词之后返回的结果永远为bool类型的值。而谓词最常用的功能就是对集合进行过滤。当程序使用谓词对集合元素进行过滤时,程序会自动遍历其元素,并根据集合元素来计算谓词的值,当这个集合中的元素计算谓词并返回yes时,这个元素才会被保留下来。请注意程序会自动遍历其元素,它会将自动遍历过之后返回为yes的值重新组合成一个集合返回。
其实类似于我们使用tableview设置索引时使用的下段代码
- (nsarray<nsstring *> *)sectionindextitlesfortableview:(uitableview *)tableview { return [self.citygroup valueforkey:@"title"]; }
中的[self.citygroup valueforkey:@"title"]。它的作用是遍历所有title并将得到的值组成新的数组。
- nsarray提供了如下方法使用谓词来过滤集合
- (nsarray<objecttype> *)filteredarrayusingpredicate:(nspredicate *)predicate
:使用指定的谓词过滤nsarray集合,返回符合条件的元素组成的新集合 - nsmutablearray提供了如下方法使用谓词来过滤集合
- (void)filterusingpredicate:(nspredicate *)predicate
:使用指定的谓词过滤nsmutablearray,剔除集合中不符合条件的元素 - nsset提供了如下方法使用谓词来过滤集合
- (nsset<objecttype> *)filteredsetusingpredicate:(nspredicate *)predicate ns_available(10_5, 3_0)
:作用同nsarray中的方法 - nsmutableset提供了如下方法使用谓词来过滤集合
- (void)filterusingpredicate:(nspredicate *)predicate ns_available(10_5, 3_0)
:作用同nsmutablearray中的方法。
通过上面的描述可以看出,使用谓词过滤不可变集合和可变集合的区别是:过滤不可变集合时,会返回符合条件的集合元素组成的新集合;过滤可变集合时,没有返回值,会直接剔除不符合条件的集合元素
下面让我们来看几个例子:
例一:
nsmutablearray *arraym = [@[@20, @40, @50, @30, @60, @70] mutablecopy]; // 过滤大于50的值 nspredicate *pred1 = [nspredicate predicatewithformat:@"self > 50"]; [arraym filterusingpredicate:pred1]; nslog(@"arraym:%@", arraym); nsarray *array = @[[zlpersonmodel personwithname:@"jack" age:20 sex:zlpersonsexmale], [zlpersonmodel personwithname:@"rose" age:22 sex:zlpersonsexfamale], [zlpersonmodel personwithname:@"jackson" age:30 sex:zlpersonsexmale], [zlpersonmodel personwithname:@"johnson" age:35 sex:zlpersonsexmale]]; // 要求取出包含‘son'的元素 nspredicate *pred2 = [nspredicate predicatewithformat:@"name contains 'son'"]; nsarray *newarray = [array filteredarrayusingpredicate:pred2]; nslog(@"%@", newarray);
输出为
2016-01-07 16:50:09.510 predictedemo[13660:293822] arraym:(
60,
70
)
2016-01-07 16:50:09.511 predictedemo[13660:293822] (
"[name = jackson, age = 30, sex = 0]",
"[name = johnson, age = 35, sex = 0]"
)
从这个例子我们就可以看到nspredicate有多么强大,如果让我们用其他的方法来实现又是一大堆if...else。
让我们来回顾一下上面的从第二个数组中去除第一个数组中相同的元素
例二:
nsarray *filterarray = @[@"ab", @"abc"]; nsarray *array = @[@"a", @"ab", @"abc", @"abcd"]; nspredicate *predicate = [nspredicate predicatewithformat:@"not (self in %@)", filterarray]; nslog(@"%@", [array filteredarrayusingpredicate:predicate]);
输出为:
2016-01-07 13:17:43.669 predictedemo[6701:136206] (
a,
abcd
)
如果我们不用nspredicate的话,肯定又是各种if...else,for循环等等。可以看出nspredicate的出现为我们节省了大量的时间和精力。
3.在谓词中使用占位符参数
我们上面所有的例子中谓词总是固定的,然而我们在现实中处理变量时决定了谓词应该是可变的。下面我们来看看如果让谓词变化起来。
首先如果我们想在谓词表达式中使用变量,那么我们需要了解下列两种占位符
- %k:用于动态传入属性名
- %@:用于动态设置属性值
其实相当于变量名与变量值
除此之外,还可以在谓词表达式中使用动态改变的属性值,就像环境变量一样
nspredicate *pred = [nspredicate predicatewithformat:@"self contains $value"];
上述表达式中,开头,随着程序改变$value这个谓词表达式的比较条件就可以动态改变。
下面我们通过一个例子来看看这三个重要的占位符应该如何使用
例一:
nsarray *array = @[[zlpersonmodel personwithname:@"jack" age:20 sex:zlpersonsexmale], [zlpersonmodel personwithname:@"rose" age:22 sex:zlpersonsexfamale], [zlpersonmodel personwithname:@"jackson" age:30 sex:zlpersonsexmale], [zlpersonmodel personwithname:@"johnson" age:35 sex:zlpersonsexmale]]; // 定义一个property来存放属性名,定义一个value来存放值 nsstring *property = @"name"; nsstring *value = @"jack"; // 该谓词的作用是如果元素中property属性含有值value时就取出放入新的数组内,这里是name包含jack nspredicate *pred = [nspredicate predicatewithformat:@"%k contains %@", property, value]; nsarray *newarray = [array filteredarrayusingpredicate:pred]; nslog(@"newarray:%@", newarray); // 创建谓词,属性名改为age,要求这个age包含$value字符串 nspredicate *predtemp = [nspredicate predicatewithformat:@"%k > $value", @"age"]; // 指定$value的值为 25 nspredicate *pred1 = [predtemp predicatewithsubstitutionvariables:@{@"value" : @25}]; nsarray *newarray1 = [array filteredarrayusingpredicate:pred1]; nslog(@"newarray1:%@", newarray1); // 修改 $value的值为32 nspredicate *pred2 = [predtemp predicatewithsubstitutionvariables:@{@"value" : @32}]; nsarray *newarray2 = [array filteredarrayusingpredicate:pred2]; nslog(@"newarray2:%@", newarray2);
输出为
2016-01-07 17:28:02.062 predictedemo[14542:309494] newarray:(
"[name = jack, age = 20, sex = 0]",
"[name = jackson, age = 30, sex = 0]"
)
2016-01-07 17:28:02.063 predictedemo[14542:309494] newarray1:(
"[name = jackson, age = 30, sex = 0]",
"[name = johnson, age = 35, sex = 0]"
)
2016-01-07 17:28:02.063 predictedemo[14542:309494] newarray2:(
"[name = johnson, age = 35, sex = 0]"
)
从上例中我们主要可以看出来%k和$value的含义。
那么至此nspredicate就到到此介绍完毕。
因为本人水平有限,如果有什么好的建议请联系我。
总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,如果有疑问大家可以留言交流,谢谢大家对的支持。