IOS使用CoreData MR_findByAttribute

时间:2015-11-11 11:37:21

标签: ios objective-c core-data magicalrecord

我使用MagicalRecord保存我的数据。

我想获得2列2个值

所以,我不能使用这种方法:

[MyData MR_findByAttribute:(NSString *) withValue:(id)]

如何使用2个值的2列使用MagicalRecord

请帮助我!

1 个答案:

答案 0 :(得分:0)

你需要在NSPredicate中使用另一个fetch方法:

NSPredicate *filter = [NSPredicate predicateWithFormat:@"atribute1=%@ AND attribute2=%@", value1, value2];
NSArray *result = [Model MR_findAllWithPredicate: filter];

看看this article