我正在尝试通过 segue 将我的 managedObjectContext 从我的 masterViewController 发送到 anotherController 并且我总是收到此错误:
-[UINavigationController setManagedObjectContext:]: unrecognized selector sent to instance 0x8d67c70
*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[UINavigationController setManagedObjectContext:]: unrecognized selector sent to instance 0x8d67c70'
我从viewDidLoad()
masterViewController 中的 appDelegate 获取 managedObjectContext ,如下所示:
AppDelegate *appDelegate = [UIApplication sharedApplication].delegate;
self.managedObjectContext = appDelegate.managedObjectContext;
我再也想不出我做错了什么,请帮忙。