我得到了这个使用 coredata 作为持久存储的旧项目。问题是它有这种用于获取实体的谓词:
NSPredicate * predicate = [NSPredicate predicateWithFormat"nameOfEntity ==[c] %@", entityName];
我在这个谓词中找不到这个 [c] 所指的内容。
谁能启发我进入这个领域。我到处搜索。
Best Answer-推荐答案 strong>
表示不区分大小写。 Name 、name 、NAME 都将被检测为相同。
String comparisons are by default case and diacritic sensitive. You can modify an operator using the key characters c and d within square braces to specify case and diacritic insensitivity respectively, for example firstName BEGINSWITH[cd] $FIRST_NAME.
source
关于ios - CoreData 谓词 @"nameOfEntity ==[c] %@",我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/25302347/
|