如何从xcode项目中完全删除CoreData

时间:2015-09-02 20:08:43

标签: ios objective-c xcode core-data

我试图从我的应用程序中完全删除CoreData,因为我不小心删除了该模型,尽管我试图修复它,但我一直在努力:

  

无法使用nil模型

创建NSPersistentStoreCoordinator

由于我没有在此项目中使用CoreData,因此我决定尝试将其彻底删除,但我遇到了麻烦。这是我到目前为止所做的:

  1. 删除了CoreData框架的Import语句并从项目

  2. 中删除
  3. 从AppDelegate

  4. 中删除了所有CoreData代码
  5. 从"复制捆绑资源"中删除了模型。在构建阶段

  6. 重新启动计算机,重新安装xcode SDK 8.4

  7. 通过项目文件夹仔细检查我是否删除了它们而不是仅删除引用。

  8. 然而我仍然得到错误。任何帮助都将非常感激,因为我无法运行我的应用程序。构建阶段工作正常,但在启动时,我收到此错误:

      

    ' NSInvalidArgumentException',原因:'无法使用nil模型创建NSPersistentStoreCoordinator'
      ***首先抛出调用堆栈:
      (0x182b8822c 0x1947fc0e4 0x1828192a0 0x1001543a4 0x100151580 0x1004a0fd4 0x1004a0f94 0x1004abdb8 0x1004a42c4 0x1004ae5d4 0x1004b0248 0x19505921c 0x195058ee0)
      libc ++ abi.dylib:以NSException类型的未捕获异常终止

    我知道它正在检测一个nil模型,那么如何从项目中完全删除CoreData呢?

    我的AppDelegate文件:

    //
    //  AppDelegate.m
    //  Oingo
    //
    //  Created by Matthew Acalin on 4/24/15.
    //  Copyright (c) 2015 Oingo Inc. All rights reserved.
    //
    
    #import "AppDelegate.h"
    #import <Parse/Parse.h>
    #import "PFTwitterUtils+NativeTwitter.h"
    #import <ParseFacebookUtilsV4/PFFacebookUtils.h>
    #import <TwitterKit/TwitterKit.h>
    #import <Fabric/Fabric.h>
    #import <Crashlytics/Crashlytics.h>
    #import <FBSDKCoreKit/FBSDKCoreKit.h>
    #import <FBSDKLoginKit/FBSDKLoginKit.h>
    
    @interface AppDelegate ()
    
    @end
    
    @implementation AppDelegate
    
    - (id)initWithCoder:(NSCoder *)aDecoder {
    
       [Fabric with:@[CrashlyticsKit]];
    
        return self;
    }
    
    - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
        // Override point for customization after application launch.
    
    
    //    [NSThread sleepForTimeInterval:5];
    
        // Initialize Parse.
        [Parse enableLocalDatastore];
        [Parse setApplicationId:@"xxx"
                      clientKey:@"xxx"];
        [PFFacebookUtils initializeFacebookWithApplicationLaunchOptions:launchOptions];
        [PFTwitterUtils initializeWithConsumerKey:@"xxx" consumerSecret:@"xxxx"];
    
        //Initialize Twitter
        [[Twitter sharedInstance] startWithConsumerKey:@"xxxxx" consumerSecret:@"xxxx"];
        [Fabric with:@[[Twitter sharedInstance]]];
        [Fabric with:@[TwitterKit, CrashlyticsKit]];
    
    
        // [Optional] Track statistics around application opens.
        //[PFAnalytics trackAppOpenedWithLaunchOptions:launchOptions];
    
        //Initialize Facebook
        [FBSDKAppEvents activateApp];
        return [[FBSDKApplicationDelegate sharedInstance] application:application didFinishLaunchingWithOptions:launchOptions];
    }
    
    
    //Method added for facebook integration
    - (BOOL)application:(UIApplication *)application
                openURL:(NSURL *)url
      sourceApplication:(NSString *)sourceApplication
             annotation:(id)annotation {
        return [[FBSDKApplicationDelegate sharedInstance] application:application
                                                              openURL:url
                                                    sourceApplication:sourceApplication
                                                           annotation:annotation];
    }
    
    - (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 throttle down OpenGL ES frame rates. 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.
        [FBSDKAppEvents activateApp];
    }
    
    - (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 managedObjectContext = _managedObjectContext;
    //@synthesize managedObjectModel = _managedObjectModel;
    //@synthesize persistentStoreCoordinator = _persistentStoreCoordinator;
    //
    //- (NSURL *)applicationDocumentsDirectory {
    //    // The directory the application uses to store the Core Data store file. This code uses a directory named "Oingo.Oingo" in the application's documents directory.
    //    return [[[NSFileManager defaultManager] URLsForDirectory:NSDocumentDirectory inDomains:NSUserDomainMask] lastObject];
    //}
    //
    //- (NSManagedObjectModel *)managedObjectModel {
    //    // The managed object model for the application. It is a fatal error for the application not to be able to find and load its model.
    //    if (_managedObjectModel != nil) {
    //        return _managedObjectModel;
    //    }
    //    NSURL *modelURL = [[NSBundle mainBundle] URLForResource:@"Oingo" withExtension:@"momd"];
    //    _managedObjectModel = [[NSManagedObjectModel alloc] initWithContentsOfURL:modelURL];
    //    return _managedObjectModel;
    //}
    //
    //- (NSPersistentStoreCoordinator *)persistentStoreCoordinator {
    //    // The persistent store coordinator for the application. This implementation creates and return a coordinator, having added the store for the application to it.
    //    if (_persistentStoreCoordinator != nil) {
    //        return _persistentStoreCoordinator;
    //    }
    //    
    //    // Create the coordinator and store
    //    
    //    _persistentStoreCoordinator = [[NSPersistentStoreCoordinator alloc] initWithManagedObjectModel:[self managedObjectModel]];
    //    NSURL *storeURL = [[self applicationDocumentsDirectory] URLByAppendingPathComponent:@"Oingo.sqlite"];
    //    NSError *error = nil;
    //    NSString *failureReason = @"There was an error creating or loading the application's saved data.";
    //    if (![_persistentStoreCoordinator addPersistentStoreWithType:NSSQLiteStoreType configuration:nil URL:storeURL options:nil error:&error]) {
    //        // Report any error we got.
    //        NSMutableDictionary *dict = [NSMutableDictionary dictionary];
    //        dict[NSLocalizedDescriptionKey] = @"Failed to initialize the application's saved data";
    //        dict[NSLocalizedFailureReasonErrorKey] = failureReason;
    //        dict[NSUnderlyingErrorKey] = error;
    //        error = [NSError errorWithDomain:@"YOUR_ERROR_DOMAIN" code:9999 userInfo:dict];
    //        // Replace this 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();
    //    }
    //    
    //    return _persistentStoreCoordinator;
    //}
    //
    //
    //- (NSManagedObjectContext *)managedObjectContext {
    //    // Returns the managed object context for the application (which is already bound to the persistent store coordinator for the application.)
    //    if (_managedObjectContext != nil) {
    //        return _managedObjectContext;
    //    }
    //    
    //    NSPersistentStoreCoordinator *coordinator = [self persistentStoreCoordinator];
    //    if (!coordinator) {
    //        return nil;
    //    }
    //    _managedObjectContext = [[NSManagedObjectContext alloc] init];
    //    [_managedObjectContext setPersistentStoreCoordinator:coordinator];
    //    return _managedObjectContext;
    //}
    //
    //#pragma mark - Core Data Saving support
    //
    //- (void)saveContext {
    //    NSManagedObjectContext *managedObjectContext = self.managedObjectContext;
    //    if (managedObjectContext != nil) {
    //        NSError *error = nil;
    //        if ([managedObjectContext hasChanges] && ![managedObjectContext 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
    

    偏好设置/位置设置的屏幕截图:派生数据=相对

    输出截图:

0 个答案:

没有答案