由于xcoredatamodel,App Store应用程序提交错误

时间:2018-07-02 08:03:01

标签: swift xcdatamodel

提交申请后,苹果发送了一封以下电子邮件。我无法解决问题所在?谁能帮助我解决这个问题?

enter code here

* This bundle is invalid - The Info.plist file for 
 /****.app/CoreData.framework is missing or could not be read.
* Invalid Bundle - The bundle at '****.app/CoreData.framework' does not contain a bundle executable.
* Invalid Bundle Structure - The framework at '****.app/CoreData.framework' is not permitted. Do not include platform frameworks in your app.

1 个答案:

答案 0 :(得分:0)

确定创建项目时是否检查Core Data吗?

enter image description here


将核心数据添加到现有项目

首先,将此代码添加到AppDelagate.swift

func applicationWillTerminate(_ application: UIApplication) {
    // 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()
}

// MARK: - Core Data stack
    lazy var persistentContainer: NSPersistentContainer = {
    /*
    The persistent container for the application. This implementation
     creates and returns a container, having loaded the store for the
     application to it. This property is optional since there are legitimate
     error conditions that could cause the creation of the store to fail.
    */
    let container = NSPersistentContainer(name: "whateverYouLikeHere")
    container.loadPersistentStores(completionHandler: { (storeDescription, error) in
        if let error = error as NSError? {
            // Replace this implementation with code to handle the error appropriately.
            // fatalError() 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.
             */
            fatalError("Unresolved error \(error), \(error.userInfo)")
        }
    })
    return container
}()

// MARK: - Core Data Saving support
func saveContext () {
    let context = persistentContainer.viewContext
    if context.hasChanges {
        do {
            try context.save()
        } catch {
            // Replace this implementation with code to handle the error appropriately.
            // fatalError() 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.
            let nserror = error as NSError
            fatalError("Unresolved error \(nserror), \(nserror.userInfo)")
        }
    }
}

如果仅使用该命令运行,则会出现以下错误: enter image description here

要解决此问题,您应该导入CoreData

enter image description here

接下来,我们需要更改容器名称以匹配我们的主项目。

enter image description here

接下来,我们必须创建实际的数据文件。因此,让我们创建一个新文件⌘N,向下滚动到Core Data部分并选择Data Model,然后继续进行操作并以您的项目命名。

enter image description here


  

如果想了解更多,您应该阅读:add score Data to an existing project

Sources