- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
升级到xCode6.1后,我无法编译上次正常的项目。我从未更改过此文件中的任何内容。请帮助我!!!
AppDelegate.swift:75:29:
errorWithDomain(_:code:userInfo:)' 不可用:使用对象构造 'NSError(domain:code:userInfo:)
lazy var persistentStoreCoordinator: NSPersistentStoreCoordinator? = {
// The persistent store coordinator for the application. This implementation creates and return a coordinator, having added 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.
// Create the coordinator and store
var coordinator: NSPersistentStoreCoordinator? = NSPersistentStoreCoordinator(managedObjectModel: self.managedObjectModel)
let url = self.applicationDocumentsDirectory.URLByAppendingPathComponent("PassNote.sqlite")
var error: NSError? = nil
var failureReason = "There was an error creating or loading the application's saved data."
if coordinator!.addPersistentStoreWithType(NSSQLiteStoreType, configuration: nil, URL: url, options: nil, error: &error) == nil {
coordinator = nil
// Report any error we got.
let dict = NSMutableDictionary()
dict[NSLocalizedDescriptionKey] = "Failed to initialize the application's saved data"
dict[NSLocalizedFailureReasonErrorKey] = failureReason
dict[NSUnderlyingErrorKey] = error
error = NSError.errorWithDomain("YOUR_ERROR_DOMAIN", code: 9999, userInfo: dict)
// Replace this with code to handle the error appropriately.
// abort() 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.
NSLog("Unresolved error \(error), \(error!.userInfo)")
abort()
}
最佳答案
尝试在 Xcode 中使用此命令:cmd + shift + k
啊,我明白了。我也在用 Swift 开发,他们改变了一些标准的实现。
您需要做的就是将函数更改为 Xcode 所说的。:) 我的项目中有 90 处更改。
所以你需要把它改成这样:NSError(domain: "YOUR_ERROR_DOMAIN", code: 9999, userInfo: dict)
关于swift - 升级到 Xcode 6.1 时 AppDelegate.swfit 中的编译错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26502746/
这是一个 AnyHashable 不支持枚举转换的简单案例。 enum testEnum: String { case Test } let myObject: AnyHashable = t
如何将此代码迁移到 Swift 3? let keyBytes = keyData.bytes.bindMemory(to: Void.self, capacity: keyData.count) 我
我有一个 SKScene,它使自己成为名为“showPhotoForMoodNotification”的通知的观察者,并带有一个名为“eventListenerDidReceiveNotificati
当运行 docker build 构建 swift 镜像时,tzdata 将停止该过程。提示选择位置,但输入号码后没有反应。 Configuring tzdata ------------------
我有一个简单的 ios 应用程序,它使用 WebView 显示网站。该网站可以选择使用 Facebook 登录。如果我使用网络浏览器导航该网站并使用 FB 登录,它工作正常,但是,当我使用 webvi
我想使用FSInteractiveMap swift 但文档只是 Objective-C,我无法快速翻译点击处理程序。 NSDictionary* data = @{ @"asia" : @1
我想知道如何在 Alamofire 中解析并从 API 获取所有数据。 这是从 API 下载一个数据字典的代码。我如何从中下载其他东西? 这是来自 JSONFormatter 的屏幕截图: http:
升级到xCode6.1后,我无法编译上次正常的项目。我从未更改过此文件中的任何内容。请帮助我!!! AppDelegate.swift:75:29: errorWithDomain(_:code:us
感谢阅读我! 我在 Debian 8 上使用 Duplicity 每天备份我的 OVH 公共(public)云项目和 OVH Swift/Openstack 公共(public)云存储上的其他项目。一
我是一名优秀的程序员,十分优秀!