ローカル ストアから iCloud 対応ストアに既存のデータをシードしようとしています。ローカル管理対象オブジェクトから関係オブジェクトにアクセスしようとすると、次の例外がスローされます。
> illegal attempt to establish a relationship between objects in
> different contexts
これは私がやろうとしていることです..
NSEntityDescription *entity = [recurringExpense entity];
RecurringExpense *newRecExpense = [[RecurringExpense alloc]initWithEntity:entity insertIntoManagedObjectContext:moc];
newRecExpense.category = recurringExpense.category;
[moc assignObject:newRecExpense toPersistentStore:store];
前もって感謝します。