谓词
Cocoa提供了一个类NSPredicate类,该类主要用于指定过滤器的条件,该对象可以准确的描述所需条件,对每个对象通过谓词进行筛选,判断是否与条件相匹配。谓词表示计算真值或假值的函数。在cocoa中封装的一个数据库框架cocoaData里面 在进行查询(包括模糊查询)时同样会要用到谓词;下面对谓词的使用方法及规则进行简要的介绍下:
- 用predicateWithFormat创建一个谓词
NSPredicate *preicate = [NSPredicate predicateWithFormat:@"SELF CONTAINS[cd] %@", searchString];
- 调用数组的方法 filteredArrayUsingPredicate: 通过谓词的对象进行筛选过滤
// evaluate a predicate against an array of objects and return a filtered array
(NSArray<ObjectType> *)filteredArrayUsingPredicate:(NSPredicate *)predicate;
数组中都是对象
谓词语句规则
- 其实谓词也是基于KVC 的
- 首先我们创建一个对象来说明
@interface Person : NSObject
@property (nonatomic, assign) int age;
@property (nonatomic, copy) NSString *name;
@end
- 创建一个数组,创建5个Person对象,分别给Person对象属性赋予不同值
- 注意 正因为基于KVC,如果这里Person里有一个Dog对象的属性dog,如果判断Dog属性XXX的进行筛选 可能写成dog.XXX
NSPredicate *pre = [NSPredicate predicateWithFormat:
@" pid>1 and height<188.0"];
我们看到创建谓词使用类方法predicateWithFormat: (NSString*) format,format 里的东西真的
和SQL 的where 条件差不多。另外,参数format 与NSLog 的格式化模版差不多,如果1 和
188.0 是传递过来的参数,你可以写成如下的形式:
@"pid>%d and height<%f",1,188.0
- 创建运算符
- 逻辑运算符
- AND、OR、NOT
NSString *predicateString =@"(engine.horsepower > 50) AND (engine.horsepower < 200)";
可以运用运算符
NSString *predicateString =@"engine.horsepower BETWEEN { 50, 200 }";
这里可以运用between关键字。和上面效果一样
- 范围运算符
- BETWEEN、IN
- IN 包含
NSString *predicateString =@"name IN { 'Herbie', 'Snugs', 'Badger', 'Flap' }";
创建标识符 | 含义 |
----|------|----|
BEGINSWITH | 检查某个字符串是否以另一个字符串开头|
ENDSWITH | 检查某个字符串是否以另一个字符串结尾 |
CONTAINS | 检查某个字符串是否以另一个字符串内部 |
[c] | 不区分大小写 |
[d] | 不区分发音符号即没有重音符号 |
[cd] | 既不区分大小写,又不区分发音符号 |
- 使用
NSString *predicateString =@"name BEGINSWITH 'Bad'";字符串运算符BEGINSWITH,ENDSWITH,CONTAINS[c][d][cd]
- like的使用
- LIKE 使用?表示一个字符,*表示多个字符,也可以与c、d 连用。
例:
@”name LIKE ‘???er*’” 与Paper Plane 相匹配。
数组中都是字符串
SELF:
前面的数组中放的都是对象,如果数组放的都是字符串(或者是其他没有属性的类型),该怎么写谓词呢?
这里我们使用SELF。
例如下面的情形,数组中存放的都是字符串
NSArray *arrays=[NSArray arrayWithObjects: @"Apple", @"Google", @"MircoSoft", nil];
NSPredicate *preicate = [NSPredicate predicateWithFormat:@"SELF CONTAINS[cd] %@", a];