1

そのため、展開ターゲットを iOS 9 (実際には 10.0 未満のもの) に設定しようとすると、タイトルに記載されているエラーが発生します。

問題はここにあります:

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

さまざまなSOの質問/回答を見ると、iOS 10が利用可能かどうかを区別するためにコードを追加する必要があることは明らかです. Swift 3 自体は、 を使用することを提案して@available(iOS 10.0, *)います。それでも十分ではありません。「利用できない場合はこれを使用してください」が欠けているためだと思いますが、SwiftおよびiOSプログラミングが初めてなので、具体的に何を書くべきかわかりません。そして、何を書くべきかについて正確な答えを与える答えが見つからないようです。誰か助けてくれませんか?

4

3 に答える 3

1

iOS 10 を以前のバージョンと区別する必要はまったくありません。NSPersistentContaineriOS 10 が必要ですが、古い手法も引き続き機能し、サポートされています。iOS <10 をサポートする必要がある場合は、使用しないでくださいNSPersistentContainer。マネージド オブジェクト モデルを読み込んで永続ストアを追加するには、さらに多くの手順が必要ですが、そうすることで、iOS のすべてのバージョンに対して単一のコード パスを持つことができます。

于 2017-02-09T17:26:52.013 に答える