ios - 'Appdelegate' 没有可见的@interface 声明选择器 'managedObjectContext'

标签 ios objective-c core-data

我试图学习核心数据并遵循 youtube 上的一些教程。在自己练习代码时,我试图通过将“managedObjectContext”消息传递给应用程序委托(delegate)对象来创建“NSManagedObjectContext”对象。下面是代码:

+ (Employee *)addEmployeeDetails:(NSDictionary *)employeeData {
    AppDelegate *appDelegate = (AppDelegate *)[[UIApplication sharedApplication] delegate];
    NSManagedObjectContext *context = [appDelegate managedObjectContext];

    Employee *employeeEntity = nil;

    return employeeEntity;
}

我收到了这个问题标题中提到的错误。我记得我在创建项目时选择了“使用核心数据”选项。我在项目中是否遗漏了其他东西?

下面是与项目一起自动添加的 AppDelegate 文件的内容。

AppDelegate.h
#import <UIKit/UIKit.h>
#import <CoreData/CoreData.h>

@interface AppDelegate : UIResponder <UIApplicationDelegate>
@property (strong, nonatomic) UIWindow *window;
@property (readonly, strong) NSPersistentContainer *persistentContainer;
- (void)saveContext;
@end

AppDelegate.m
#import "AppDelegate.h"

@interface AppDelegate ()

@end

@implementation AppDelegate


- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
    // Override point for customization after application launch.
    return YES;
}


- (void)applicationWillResignActive:(UIApplication *)application {
    // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state.
    // Use this method to pause ongoing tasks, disable timers, and invalidate graphics rendering callbacks. Games should use this method to pause the game.
}


- (void)applicationDidEnterBackground:(UIApplication *)application {
    // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later.
    // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.
}


- (void)applicationWillEnterForeground:(UIApplication *)application {
    // Called as part of the transition from the background to the active state; here you can undo many of the changes made on entering the background.
}


- (void)applicationDidBecomeActive:(UIApplication *)application {
    // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.
}


- (void)applicationWillTerminate:(UIApplication *)application {
    // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.
    // Saves changes in the application's managed object context before the application terminates.
    [self saveContext];
}


#pragma mark - Core Data stack

@synthesize persistentContainer = _persistentContainer;

- (NSPersistentContainer *)persistentContainer {
    // The persistent container for the application. This implementation creates and returns a container, having loaded the store for the application to it.
    @synchronized (self) {
        if (_persistentContainer == nil) {
            _persistentContainer = [[NSPersistentContainer alloc] initWithName:@"Core_Data_Tutorial_1"];
            [_persistentContainer loadPersistentStoresWithCompletionHandler:^(NSPersistentStoreDescription *storeDescription, NSError *error) {
                if (error != nil) {
                    // Replace this implementation with code to handle the error appropriately.
                    // abort() causes the application to generate a crash log and terminate. You should not use this function in a shipping application, although it may be useful during development.

                    /*
                     Typical reasons for an error here include:
                     * The parent directory does not exist, cannot be created, or disallows writing.
                     * The persistent store is not accessible, due to permissions or data protection when the device is locked.
                     * The device is out of space.
                     * The store could not be migrated to the current model version.
                     Check the error message to determine what the actual problem was.
                    */
                    NSLog(@"Unresolved error %@, %@", error, error.userInfo);
                    abort();
                }
            }];
        }
    }

    return _persistentContainer;
}

#pragma mark - Core Data Saving support

- (void)saveContext {
    NSManagedObjectContext *context = self.persistentContainer.viewContext;
    NSError *error = nil;
    if ([context hasChanges] && ![context save:&error]) {
        // Replace this implementation with code to handle the error appropriately.
        // abort() causes the application to generate a crash log and terminate. You should not use this function in a shipping application, although it may be useful during development.
        NSLog(@"Unresolved error %@, %@", error, error.userInfo);
        abort();
    }
}

@end

最佳答案

AppDelegate没有名为 managedObjectContext 的属性.您需要在 AppDelegate.h 中声明它

@property (strong, nonatomic) NSManagedObjectContext *managedObjectContext;

当然,正确分配它。

关于ios - 'Appdelegate' 没有可见的@interface 声明选择器 'managedObjectContext',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41420373/

相关文章:

ios - 如何根据内容创建具有动态单元格高度的 UITableViewCell

ios - 在后台线程中下载多个文件?

iphone - NSFetchedResultsController 的替代品?

objective-c - 当 ViewController 从 UIStoryboard 实例化时,isMemberOfClass 返回 no

ios - React Native 和 RNFirebase iOS 发布版本失败

iOS 如何在自定义 UITableViewCell 中创建未定义的 UIControl

ios - Appstore发布应用的神奇记录,核心数据迁移

ios - 在 UINavigationController 中,我必须快速使用两个带有 Image 的 rightBarButtonItem

ios - 在 objective-c 中声明 float

iphone - 仅在应用程序首次启动时使用 plist 预填充核心数据