我想使用单例 UIApplication 来访问 AppDelegate 的 managedObjectContext。但是当我写
[[[UIApplication sharedApplication] delegate] managedObjectContext]
或者
[[[UIApplication sharedApplication] delegate] __managedObjectContext]
它不起作用。
但是这条线工作正常:
NSLog(@"Seeking for the AppDelegate : %@", [[[UIApplication sharedApplication] delegate] class]);
你有解决方案吗 ?尼尔斯