- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在努力解决以下问题。尽管进行了深入搜索,但我还没有成功。
我的开发环境是 macOS Big Sur Beta 下的 Xcode 12.0 beta(但是,问题在 Catalina 下的 Xcode 11.5 上出现相同)。我正在开发的应用程序是多平台的,macOS 10.16 和 iOS 13.5 目标。该应用使用 NSPersistentCloudKitContainer 为 CoreData 配置。
虽然 registerForRemoteNotifications()
在 iOS 目标中成功且没有任何问题,并且正确调用了 didRegisterForRemoteNotificationsWithDeviceToken
,但在 macOS 目标中没有任何反应:didRegisterForRemoteNotificationsWithDeviceToken
didFailToRegisterForRemoteNotificationsWithError
也不会被触发。显然,CloudKit 和 PushNotification 授权已在 macO 和 iOS 目标上正确配置。查询 isRegisteredForRemoteNotifications
在 macOS 上也返回 true
...
persistentContainer 定义代码在 macOS 和 iOS 上是相同的(注意完全默认,并且 automaticallyMergesChangesFromParent
已正确设置)
var persistentContainer: NSPersistentCloudKitContainer = {
let container = NSPersistentCloudKitContainer(name: "MyFinance")
guard let description = container.persistentStoreDescriptions.first else {
os_log("Failed to retrieve a persistent store description. Aborting application.", log: log, type: .error)
fatalError("###\(#function): Failed to retrieve a persistent store description.")
}
description.setOption(true as NSNumber, forKey: NSPersistentHistoryTrackingKey)
description.setOption(true as NSNumber, forKey: NSPersistentStoreRemoteChangeNotificationPostOptionKey)
container.loadPersistentStores(completionHandler: { (storeDescription, error) in
if let error = error {
guard let error = error as NSError? else { return }
os_log("Failed to load persistent store. Aborting application.", log: log, type: .error)
fatalError("###\(#function): Failed to load persistent stores:\(error)")
}
})
container.viewContext.mergePolicy = NSMergeByPropertyObjectTrumpMergePolicy
container.viewContext.transactionAuthor = "xxx"
do {
try container.viewContext.setQueryGenerationFrom(.current)
} catch {
os_log("Failed to pin viewContext to the current generation. Aborting application.", log: log, type: .error)
fatalError("###\(#function): Failed to pin viewContext to the current generation:\(error)")
}
container.viewContext.automaticallyMergesChangesFromParent = true
return container
}()
最终结果是,虽然 CoreData 与推送通知的同步在 macOS -> iOS 的方向上得到了正确处理,但在相反的方向上没有任何反应(因为 macOS 上的推送通知没有被触发):从 iOS 到 macOS,CoreData 是仅在应用程序启动时重新对齐。
任何人都可以将自己定位在正确的方向吗?两天来我一直在用头撞墙,没有任何明智的结果......
附言运行 macOS 目标时还有另一个“症状”:任何时候在应用程序中触发 API 调用,尽管调用成功,但 Xcode 调试控制台中会出现以下消息:
nw_resolver_start_query_timer_block_invoke [Cxx] Query fired: did not receive all answers in time for xxx (the API url)
iOS 目标不会发生这种情况。我找不到合适的解释。我真的不知道这是否与推送通知问题有某种关系。搜索有关它的公共(public)领域没有乐趣。
最佳答案
在 macOS 上启用 SwiftUI 的多平台应用程序上,我没有收到来自通知的任何回调。
调用 app.registerForRemoteNotifications() 在 macOS big sur 上没有任何作用,我越来越晚了
UNUserNotificationCenter.current().requestAuthorization(options: [.alert, .sound, .badge,]) { [unowned self] (granted, error) in
}
未显示权限
在我看来这可能是一个错误。
关于ios - CloudKit NSPersistentCloudKitContainer 推送通知不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62956287/
要在私有(private) CKRecordZone 中添加 CKRecord,您需要确保该区域已经存在。 但这是否意味着每次我需要插入记录时,我都需要获取所有区域并使用 fetchAllRecord
我正在与 cloudkit 仪表板交互并查看我的应用程序收集的数据。 如何从仪表板导出所有数据(数据 -> csv 或 json),以便我可以对其进行一些分析? 谢谢! 最佳答案 我认为苹果永远不会提
我使用 Cloudkit 和私有(private)数据库将一些文件存储到 iCloud 并在 iOS 和 OSX 之间同步。现在我想实现一些东西,用户可以在不离开应用程序并查看首选项的情况下查看他的
我有两个看起来像这样的 CloudKit 数据对象: 父对象: { "records": [ { "recordName": "14102C0A-60F
有谁知道这个闭包中的String字段的用途public var recordWithIDWasDeletedBlock: ((CKRecordID, String) -> Void)?。我不知道它的用
我的应用程序在 CloudKit 中执行的几乎所有操作现在都会返回此错误: (lldb) po [error userInfo] { CKDHTTPHeaders = {
我在尝试初始化 Cloudkit schema 时遇到此错误: Error Domain=NSCocoaErrorDomain Code=134060 "A Core Data error occur
我正在更新 iOS13 之前的 Core Data 应用程序以使用 Core Data+CloudKit 同步来支持多个设备上的单个用户。同步应该是自动发生的,并且在我开发的一个中间步骤中它确实起作用
有没有办法使用 CloudKit 获取 iCloud 笔记?我看过文档: https://developer.apple.com/library/archive/documentation/DataM
swift 3.1,Xcode 8.3.3 我在 CloudKit 中有一个名为 Aircraft 的记录类型,它有一个名为 fieldValues 的字段,类型为 Reference List。 在
swift 3.1,Xcode 8.3.3 我在 CloudKit 中有一个名为 Aircraft 的记录类型,它有一个名为 fieldValues 的字段,类型为 Reference List。 在
当我尝试从 CloudKit Dashboard 查询 CloudKit 时,收到一条错误消息: There was a problem querying the “Entry” type. no a
出于某种原因,一小部分 iOS 10 用户无法从我的公共(public) iCloud 容器中读取数据。 CloudKit 返回的 localisedError 是“Account doesn't h
我有一个在 iOS 上运行良好的应用程序,但是当使用催化剂运行时,如果我在 macOS 上滑动到另一个虚拟桌面,然后再返回大约 10 次,它会间歇性地崩溃。它主要发生在 UICollectionVie
用户 B 从用户 A 拥有的共享记录中删除自己的正确方法是什么?我想我记得从一些 WWDC 视频中用户 B 会删除 CKShare来自他的共享数据库,但在查看用户 A 设备的权限时,该用户似乎仍然是参
对于我们的消息传递应用程序,如果我们将用户消息直接发送到 CloudKit (不做任何我们自己的加密),我们可以声称我们的应用程序是 end-to-end encrypted ,“只有通信用户可以阅读
我之前曾尝试使用 OSX/iOS 应用程序实现 CloudKit,由于我的强制症,我非常担心设备之间某些数据的优先级,以及可能丢失数据或恢复已删除的数据。 我的逻辑是,将从 iCloud 获取的数据和
Apple 发布了一种针对 CloudKit 的服务器到服务器进行身份验证的新方法。 https://developer.apple.com/library/content/documentation
因此根据Apple的文档,未登录iCloud的用户仍然可以从公共(public)数据库中读取数据,但是在查询公共(public)数据库时,我收到以下错误: Error Domain=NSCocoaEr
我需要创建一个CKQuery,其中谓词包含记录的引用,而不是记录的字段。 像这样 let query = CKQuery(recordType: "OUP", predicate: NSPredica
我是一名优秀的程序员,十分优秀!