Hello,
I would like to know how the following works in Objective-C
in my header file i have the following which is initialized from a different view controller
@interface UserLookup : UIViewController { NSManagedObjectContext *referringObject; }
and in my implementation file i have to pass this NSManagedObjectContext
to 2 child view controller then does it make a difference which view controller is called first... and does the NSManagedObjectContext
changes in any one of the child controller?
Regards