我无法在MagicalRecord中找到FirstFirstByAttribute

时间:2016-10-03 11:08:21

标签: ios objective-c core-data magicalrecord

在MagicalRecords的文档中给出了

  

如果您有一种从数据中检索单个对象的独特方式   存储你应该这样做

Person *person = [Person MR_findFirstByAttribute:@"FirstName" withValue:@"Forrest"];

我这样做

DX *foundDX = [DX MR_findFirstByAttribute:@"code" withValue:cell.DXCodeName];
NSLog(@"Found DX: %@, Cell Code Name is: %@",foundDX,cell.DXCodeName.text);

如果我知道价值在实体中,它仍然给我

  

找到DX :( null),单元代码名称为:F45

但我已经在DX实体中使用了这个值

enter image description here

那我错过了什么?

1 个答案:

答案 0 :(得分:1)

很抱歉把它放在这里,但我还没有评论的声誉。您是否尝试过传入值cell.DXCodeName.text?