对于字符串属性它是直接的。我创建一个这样的谓词:
nspredicate *predicate = [nspredicate predicateWithFormat:@"username = %@",username];
但是如何做到这一点,如果我有一个bool属性称为选择,我想为此做一个谓词?我可以做这样的事吗?
nspredicate *predicate = [nspredicate predicateWithFormat:@"selected = %@",yesNumber];
或者我需要其他格式说明符,只是传递YES?
解决方法 从 Predicate Programming Guide:您指定并测试布尔值的相等性,如以下示例所示:
nspredicate *newPredicate = [nspredicate predicateWithFormat:@"anAttribute == %@",[NSNumber numberWithBool:aBool]];nspredicate *testForTrue = [nspredicate predicateWithFormat:@"anAttribute == YES"];
您还可以查看Predicate Format String Syntax。
总结以上是内存溢出为你收集整理的iphone – 如何在Core Data中写一个BOOL谓词?全部内容,希望文章能够帮你解决iphone – 如何在Core Data中写一个BOOL谓词?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)