我已经在标题中添加了下一步,因为这与我之前的问题不同,标题几乎完全相同。
我有一个Person
实体。
Person
--------
name - mappedKeyName: FullName
email - mappedKeyName: EmailAddress
personID - mappedKeyName: Id
--------
photos
和一个Photo
实体。
Photo
--------
image
createDate - mappedKeyName: Date
photoID - mappedKeyName: Id
--------
owner (type Person) - mappedKeyName: UserId - relatedByAttribute: personID
还有其他相关的对象,这些对象Person
的 JSON 也是如此......
{
ObjectId : blah,
Owner : {
Id : 12345asdfg,
FullName : Oliver,
EmailAddress : oliver@oliver.com
}
}
使用此 JSON,我的设置适用于导入。任何不存在的人员记录(带有 ID)都会被创建。并且任何确实存在的都会更新。
但是,照片 JSON 对象是这样的......
{
Id : thisIsThePhotoID,
Date : today,
UserId : 12345asdfg
}
当对象像这样下来时,魔术记录导入在人员导入时停止。
代码崩溃在...
- (id) MR_relatedValueForRelationship:(NSRelationshipDescription *)relationshipInfo
{
NSString *lookupKey = [self MR_lookupKeyForRelationship:relationshipInfo];
return lookupKey ? [self valueForKeyPath:lookupKey] : nil; // it stops here.
}
的值为lookupKey
@"personID"。
在断点处打印出 relationshipInfo 给出...
$6 = 0x1fd695e0 (<NSRelationshipDescription: 0x1fd695e0>),
name owner,
isOptional 0,
isTransient 0,
entity Photo,
renamingIdentifier owner,
validation predicates (),
warnings (),
versionHashModifier (null)
userInfo {
mappedKeyName = UserId;
relatedByAttribute = personID;
},
destination entity Person,
inverseRelationship photos,
minCount 1,
maxCount 1,
isOrdered 0,
deleteRule 1
我真的不知道为什么这不起作用。我没有报告任何明智的错误。