当我尝试将部署目标设置为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编程是新手,我不知道该具体写什么。而且我似乎无法找到任何答案给出关于写什么的确切答案。有人可以帮忙吗?
答案 0 :(得分:5)
我遇到了同样的问题,我通过下面提到的方式解决了。我在Swift 3.0中做项目。
APpDelegate
"import INSPersistentContainer"
中导入
NSPersistentContainer
替换为INSPersistentContainer
就是这样。
现在我可以在较低版本的iOS(< iOS 10)中运行我的应用程序。
答案 1 :(得分:1)
您真的不需要将iOS 10与早期版本区分开来。 Public Function IsBold(c As Range) As Boolean
On Error GoTo Handler
IsBold = c.Font.bold
Exit Function
Handler:
If Err.Number = 94 Then IsBold = True
End Function
需要iOS 10,但较旧的技术仍然可以使用并且仍然受支持。如果您需要支持iOS< 10,请不要使用NSPersistentContainer
。这是加载托管对象模型和添加持久性存储的更多步骤,但这样做意味着您可以为所有版本的iOS提供单一代码路径。
答案 2 :(得分:1)
NSPersistentContainer
仅适用于iOS 10
如果你仍然需要你的应用程序在以前的版本中运行,你可以使用仍在iOS 10中运行的旧核心数据堆栈
另一个解决方案是使用swift中的#available属性来执行核心数据堆栈或NSPersistentContainer。
您可以按照https://stackoverflow.com/a/42392120/8023444此答案支持ios 9和ios 10