我正在尝试测试我的核心数据方案。但是,我似乎无法创建上下文,因为它说No visible @interface for 'MyAppDelegate' declares the selector 'managedObjectContext'
.
在在线教程中,这个方法似乎是在我们创建应用程序时自动生成的。但是,就我而言,它不存在。
这是 MyAppDelegate:
标题
#import <UIKit/UIKit.h>
@interface MyAppDelegate : UIResponder <UIApplicationDelegate>
@property (strong, nonatomic) UIWindow *window;
@end
.m 文件
#import "MyAppDelegate.h"
@implementation MyAppDelegate
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
NSManagedObjectContext *context = [self managedObjectContext];
// Override point for customization after application launch.
return YES;
}
我应该如何在带有 iOS 7 的 Xcode 5 中解决这个问题?