- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个 NSPredicate
看起来像这样:
NSPredicate *predicateSearch;
if ([category_array count]>0 && [location_array count]>0) {
predicateSearch =[NSPredicate predicateWithFormat:@"category_id IN %@ AND location_id IN %@ AND company_title CONTAINS %@",category_array,location_array,searchStr];
}
else if ([category_array count]>0){
predicateSearch =[NSPredicate predicateWithFormat:@"category_id IN %@ AND company_title CONTAINS %@",category_array,searchStr];
}
else if([location_array count]>0){
predicateSearch = [NSPredicate predicateWithFormat:@"location_id IN %@ AND company_title CONTAINS %@",location_array,searchStr];
}
[fetchRequest setPredicate:predicateSearch];
由于 NSPredicate
无法处理 Nil
值,我使用此 If 语句来格式化谓词并将 Nil
值处理为'任何'。这里的问题是,如果 searchStr 为 Nil
,我还希望将其处理为“ANY”。在 Nil
的情况下,我试图将其设置为空字符串,但它不起作用。有什么方法可以在不对每种情况使用任何 If 语句的情况下实现这一点(9 个 if 语句太多了)?
最佳答案
使用复合谓词。例如,根据您发布的内容:
NSPredicate *categoryPredicate = (category_array.count > 0)
? [NSPredicate predicateWithFormat:@"category_id IN %@", category_array]
: [NSPredicate predicateWithValue:YES];
NSPredicate *locationPredicate = (category_array.count > 0)
? [NSPredicate predicateWithFormat:@"location_id IN %@", location_array]
: [NSPredicate predicateWithValue:YES];
NSPredicate *searchPredicate = (searchStr.length > 0)
? [NSPredicate predicateWithFormat:@"company_title CONTAINS %@", searchStr]
: [NSPredicate predicateWithValue:YES];
NSCompoundPredicate *predicate =
[NSCompoundPredicate
andPredicateWithSubpredicates:@[
categoryPredicate,
locationPredicate,
searchPredicate,
]
];
关于ios - NSPredicate 将 NIL 字符串作为任何字符处理,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33627256/
我有一组 ID:[INT]。现在我想选择所有具有这些 id 的对象,但需要遵循 ID 数组中的 id 顺序。 let IDs = [2, 6, 3, 4, 10, 9] let predicate =
假设我有一个用于 NSPredicate 规则的 Core Data 数据库。 enum PredicateType,Int { case beginswith case endswith case
根据 Apples 类引用 CKQuery,运算符 CONTAINS 是受支持的运算符之一。但是,这似乎不起作用。我有一个名为 myRecord 的 RecordType,以及一个字段名称为 name
这是一个非常基本的问题,即使我认为理解了 NSPredicate 的基础知识,我仍然对为什么我在这里遇到错误感到困惑(searchText 是一个指向正在处理的 NSString 对象的指针传递到方法
在我的 iOS 应用程序中,我的获取 Controller 有一个非常简单的谓词。 NSString *format = [NSString stringWithFormat:@"name like[
我知道您不能将 coredata 视为关系数据库,因为它是一个对象图(如果我错了请纠正我)。因此,当您使用谓词调用提取请求时,我对内存中发生的事情有点迷茫。 是先将整个实体加载到 ManageObje
这必须是重复的。但是有这么多 NSPredicate 问题,我找不到合适的问题。 我有一个包含 compositeName 的 Core Data 对象列表 field 。像“艾米莉布朗特”这样的名字
在我的模型中,我有日期属性并设置它 [NSDate date] ,但得到像这样的谓词 NSPredicate *predicate = [NSPredicate predicateWithForma
我知道如何在关系中使用 NSPredicate,但由于某种原因,当我对获取的属性执行相同的操作时,我得到: 由于未捕获的异常“NSInvalidArgumentException”而终止应用程序,原因
首先,感谢您的阅读。 我正在尝试为以下场景构建 NSPredicate。 对象 A 可以有 0 个、1 个或多个对象 B。对象 B 与对象 B 具有逆关系。 我正在尝试对不在 A 中的所有 B 执行获
这个问题基于与我之前的问题相同的应用程序/来源,可以在此处找到: How to manage memory using classes in Objective-C? 我有一个嵌套数组,打印出来时看起
我有以下代码: NSString *mapIDx = @"98"; NSLog(@"map id: %@", mapIDx); NSFetchRequest *request
核心数据NSPredicate中LIKE [c]%@和= [c]%@之间的确切区别是什么?我想搜索一个与接收者完全匹配的字符串。示例: NSArray *arrayNames = [context f
这有点复杂 NSPredicate *predicate = [NSPredicate predicateWithFormat:@"startDate >= %@ AND endDate %@",
我有这个谓词 NSPredicate *myPredicate = [NSPredicate predicateWithFormat:@"(date == %@) && (enabled ==
在核心数据中,我有一个名为关键字的实体,其属性为“文本”。我想找到特定字符串中包含的所有关键字对象。 我尝试过: [NSPredicate predicateWithFormat:@"%@ conta
我需要从多个值数组形成一个谓词。所以我想我可以最初形成一个包含所有值的字符串,然后传递该字符串以在谓词中使用,即 NSString* stringForPredicate = [[NSString
如何使用NSPredicate满足多个条件 NSEntityDescription *entity = [NSEntityDescription entityForName:@"MessageData
这是我的问题。我有这个模型,一个[事件]有多个[日],并且[事件]中有一个称为天的关系,并且[日]中有一个反向关系事件。 现在我想传递 Event 对象并使用 NSFetchedResultsCont
一般我们这样使用 NSPredicate : NSPredicate *matchName = [NSPredicate predicateWithFormat:
我是一名优秀的程序员,十分优秀!