nspredicate 数组中的多个项目
如何使用 NSPredicate 来满足多个条件
NSEntityDescription *entity = [NSEntityDescription entityForName:@"MessageData" inManagedObjectContext:managedObjectContext];
NSFetchRequest *fetchRequest = [[NSFetchRequest alloc] init];
[fetchRequest setEntity:entity];
NSPredicate *predicate = [NSPredicate predicateWithFormat:@"msg_id = %@",msg_id];
[fetchRequest setPredicate:predicate];
我需要获取其中 msg_id = 数组中的值的对象
how to use NSPredicate to satisfy multiple conditions
NSEntityDescription *entity = [NSEntityDescription entityForName:@"MessageData" inManagedObjectContext:managedObjectContext];
NSFetchRequest *fetchRequest = [[NSFetchRequest alloc] init];
[fetchRequest setEntity:entity];
NSPredicate *predicate = [NSPredicate predicateWithFormat:@"msg_id = %@",msg_id];
[fetchRequest setPredicate:predicate];
i need to fetch objects in which msg_id = values in a array
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以执行
“msg_id IN %@”,数组
。You can do
"msg_id IN %@", array
.