- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在做的是获取核心数据的数据如下
NSString *str;
NSPredicate *predicate;
switch (typeCube) {
case NewCubes: {
str = [NSString stringWithFormat:@"type == %d",NewCubes];
break;
}
case AllCubes: {
str = [NSString stringWithFormat:@"type != %d",CustomCubes];
break;
}
case CustomCubes: {
str = [NSString stringWithFormat:@"type == %d",CustomCubes];
break;
}
}
predicate = [NSPredicate predicateWithFormat:@"%@ AND (accounts.keyChainId == %@)", str, accountKeyChainId];
但是,predicate 的结果是 nil。但是下面的作品
predicate = [NSPredicate predicateWithFormat:@"(type == %d) AND (accounts.keyChainId == %@)", type, accountKeyChainId]; ( type is either NewCubes or AllCubes or CustomCubes)
如果您有任何想法,请提供帮助。欢迎所有评论。谢谢
最佳答案
有一个名为 NSCompoundPredicate
的类,它允许您使用 AND、OR 和 NOT 运算符构造谓词。这里需要
[NSCompoundPredicate andPredicateWithSubpredicates:@[predicate1, predicate2, etc.]];
所以代码将是——
NSPredicate *predicate1;
NSPredicate *predicate;
switch (typeCube) {
case NewCubes: {
predicate1 = [NSPredicate predicateWithFormat:@"type == %d",NewCubes];
break;
}
case AllCubes: {
predicate1 = [NSPredicate predicateWithFormat:@"type != %d",CustomCubes];
break;
}
case CustomCubes: {
predicate1 = [NSPredicate predicateWithFormat:@"type == %d",CustomCubes];
break;
}
}
predicate = [NSPredicate predicateWithFormat:@"accounts.keyChainId == %@", accountKeyChainId];
[NSCompoundPredicate andPredicateWithSubpredicates:@[predicate1, predicate]];
在这里阅读更多关于 NSCompountPredicates 的信息:http://nshipster.com/nspredicate/
关于ios - 谓词为零,nscoredata,目标,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22563956/
我正在尝试维护一个使用 NSCoreData 的应用程序。它有一个有点复杂的数据库,当我偶尔删除一个对象时,它会失败并显示以下错误日志: https://gist.github.com/emilevi
我正在制作一个应用程序,我想创建一个数据库,我可以在其中向许多不同的实体添加注释。为此,我创建了一个基类并将其标记为抽象。然后,我从我的笔记实体到我的基类建立了一对多关系。然后我创建了我的基类的许多子
例如,我在数据库中有 10000 个条目,我需要将它们显示到 UITableView 中。 所以,我应该设置所有的 NSCoreData 东西,创建 NSFetchRequest 和 NSFetche
我正在做的是获取核心数据的数据如下 NSString *str; NSPredicate *predicate; switch (typeCube) { case NewCubes: {
我正在学习一些关于 NSCoreData 的知识,在向它介绍我现有的一些项目之前,我想验证一下我对核心原则的良好理解。据我了解,NSCoreData 通过从 NSManagedObject 而不是 N
我是一名优秀的程序员,十分优秀!