невозможно создать контекст в файле swift - PullRequest
0 голосов
/ 04 февраля 2019

Мне нужно получить некоторые данные из CoreData и делать это часто, и, следовательно, пытаться создать для них служебный класс.Когда я пытаюсь создать для него контекст, он выдает ошибку, а ниже приведен код.Я добавил новый файл .swift и вставил ниже код

import Foundation
import UIKit
import CoreData

class armyDataSource{

    let appDelegate = UIApplication.shared.delegate as! AppDelegate
    let context = appDelegate.persistentContainer.viewContext


}

действительно не уверен, что не так, я делаю это здесь.

Ответы [ 2 ]

0 голосов
/ 04 февраля 2019

Если вы хотите создать класс-обертку для главного менеджера данных, вы можете написать класс, как показано ниже, в быстром файле с вашей реализацией.

 import UIKit
 import CoreData
class CoreDataManager {


static let sharedManager = CoreDataManager()
private init() {} // Prevent clients from creating another instance.

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: "StackOF")
    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)")
        }
    }
}
}
0 голосов
/ 04 февраля 2019

Вы не можете инициализировать эти свойства в классе.Эту инициализацию необходимо выполнить в методе, лучше всего при вызове init.

Невозможно использовать элемент экземпляра appDelegate в инициализаторе свойства;инициализаторы свойств запускаются до того, как станет доступным 'self'

Таким образом, это означает, что вы не можете использовать свойство для инициализации другого свойства, поскольку все это делается до вызова init и полной доступности self.

Попробуйте вместо этого:

class armyDataSource {

    let appDelegate: UIApplicationDelegate
    let context: NSManagedObjectContext

    init() {
        appDelegate = UIApplication.shared.delegate as! AppDelegate
        context = appDelegate.persistentContainer.viewContext
    }
}
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...