Please help. I'm very new about ios app development. I'm trying to use MagicalRecord to save data in objective-C. However, I already install the MagicalRecord, but MR_inContext still not working.
Person *person = 'what should goes here?';
[MagicalRecord saveWithBlock:^(NSManagedObjectContext *localContext){
Person *localPerson = [person MR_inContext:localContext];
localPerson.firstName = @"John";
} completion:^(BOOL success, NSError *error) {}
I am trying to do something like MagicalRecord document.