我使用MagicalRecord
保存我的数据。
我想获得2列2个值
所以,我不能使用这种方法:
[MyData MR_findByAttribute:(NSString *) withValue:(id)]
如何使用2个值的2列使用MagicalRecord
请帮助我!
答案 0 :(得分:0)
你需要在NSPredicate中使用另一个fetch方法:
NSPredicate *filter = [NSPredicate predicateWithFormat:@"atribute1=%@ AND attribute2=%@", value1, value2];
NSArray *result = [Model MR_findAllWithPredicate: filter];