web-dev-qa-db-ja.com

Swift 3のmanagedObjectContext

このサンプルコード で作業したいのですが、SwiftとCoreDataを使用してテーブルを作成します。ただし、Swift 3最も重要なことは、回線を適切に交換できないことです。

// set up the NSManagedObjectContext
  let appDelegate = NSApplication.sharedApplication().delegate as! AppDelegate
  managedContext = appDelegate.managedObjectContext

この関連する質問 (ただし、これはiOSではなくOS Xです)が見つかりましたが。エラーメッセージValue of type 'AppDelegate' has no member 'managedContext'を生成するコードを置き換えるにはどうすればよいですか?

12
DaPhil

macOSのSwift 3

let appDelegate = NSApplication.shared().delegate as! AppDelegate
let managedContext = appDelegate.managedObjectContext

指定したエラーには'AppDelegate' has no member 'managedContext' の代わりに 'AppDelegate' has no member 'managedObjectContext'。これは、構文を修正するだけでよいと仮定することにつながります。

iOS 10のSwift 3

コアデータを機能させるには、少なくとも3つのことが必要です。

  1. 管理オブジェクトモデル
  2. 永続ストアコーディネーター
  3. そして、管理対象オブジェクトのコンテキスト

これらの3つをまとめると、コアデータスタックが得られます。

IOS 10が登場すると、コアデータスタックをカプセル化する NSPersistentContainer という新しいオブジェクトが導入されました。

コンテナオブジェクトの作成方法は here と答えています。

managedObjectContextviewContextというプロパティになり、次の方法でアクセスできます。

let delegate = UIApplication.shared.delegate as! AppDelegate
let managedObjectContext = delegate.persistentContainer.viewContext

役立つ記事は コアデータの新機能 ですが、その読みが少し重すぎるように思える場合は、この WWDCビデオ がこのトピックの説明に役立ちます。

17
darksinge

AppDelegateには以下のメンバーのみがいます

// 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: "")
    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
}()

使用する

 let managedContext = (UIApplication.shared.delegate as! appDelegate).persistentContainer.viewContext

これはうまくいきます

8
Ramanaraynan

MacOSおよびSwift 3.1

let moc: NSManagedObjectContext = (NSApplication.shared().delegate as! AppDelegate).persistentContainer.viewContext
5
Pedro Luz

I Swift 3このコードでmanagedContextを設定できます:

  let managedContext = (UIApplication.shared.delegate as! AppDelegate).persistentContainer.viewContext
3
Banker Mittal