WatchOS 4 没有收到心率样本?
WatchOS 4 not receiving heart rate samples?
使用来自 SpeedySloth 的 Apple 示例代码,我在模拟器上获取了心率样本,但在我的 Series 0 Apple Watch 运行 WatchOS 4.1 上没有获取任何样本。这是一个错误吗?还有谁有相同的问题吗?
代码:
func startHeartRateQuery(from startDate: Date, updateHandler: @escaping ([HKQuantitySample]) -> Void) {
let typeIdentifier = HKQuantityTypeIdentifier.heartRate
startQuery(ofType: typeIdentifier, from: startDate) { _, samples, _, _, error in
guard let quantitySamples = samples as? [HKQuantitySample] else {
print("Heart rate query failed with error: \(String(describing: error))")
return
}
print("heartRate samples = \(quantitySamples)")
updateHandler(quantitySamples)
}
}
//Generic helper function
private func startQuery(ofType type: HKQuantityTypeIdentifier, from startDate: Date, handler: @escaping
(HKAnchoredObjectQuery, [HKSample]?, [HKDeletedObject]?, HKQueryAnchor?, Error?) -> Void) {
let datePredicate = HKQuery.predicateForSamples(withStart: startDate, end: nil, options: .strictStartDate)
let devicePredicate = HKQuery.predicateForObjects(from: [HKDevice.local()])
let queryPredicate = NSCompoundPredicate(andPredicateWithSubpredicates:[datePredicate, devicePredicate])
let quantityType = HKObjectType.quantityType(forIdentifier: type)!
let query = HKAnchoredObjectQuery(type: quantityType, predicate: queryPredicate, anchor: nil,
limit: HKObjectQueryNoLimit, resultsHandler: handler)
query.updateHandler = handler
healthStore.execute(query)
activeDataQueries.append(query)
}
我最终将我的手表从系列 0 升级到系列 3,并且在 WatchOS 4.1 上获取心率不再有任何问题。问题可能与硬件有关。发布更新以显示我上面的代码非常适合提取心率数据。
我在使用 SpeedySloth 应用程序收集数据时遇到了几个问题。花了 4 天的时间阅读了关于该主题的所有 SO post 并尝试了我能想到的一切。我最终从我的计算机上删除了所有旧的 Xcode 版本(我现在只安装了 9.2)并且我还删除了 ~/Library/Logs/CoreSimulator/
中的所有模拟器文件并且它最终可以工作。奇怪。
我有一个类似的问题,我已经解决了很长时间。出于某种原因,尽管在查询中设置了 updateHandler
,但即使将新样本添加到 HealthStore,它也不会被触发。我认为这是最新 OS (4.2) 的问题。
作为替代方案,我一直使用刷新的查询锚点每 5 秒轮询一次 HealthStore。它现在按预期工作。我有一个状态变量,用于检查是否继续轮询。
我在同一 Apple 示例代码上遇到了完全相同的问题。几个月前在 WatchOS 4.1 上试过之后,我可以放心地假设它从 4.2 开始就坏了。
不过,我只需向保健品商店申请必要的 HK 授权,就能让它发挥作用。只需覆盖初始值设定项或 HealthStoreManager.swift 就像这样:
// HealthStoreManager.swift
override init() {
super.init()
let allTypes = Set([HKObjectType.workoutType(),
HKSeriesType.workoutRoute(),
HKObjectType.quantityType(forIdentifier: .activeEnergyBurned)!,
HKObjectType.quantityType(forIdentifier: .distanceWalkingRunning)!])
healthStore.requestAuthorization(toShare: allTypes, read: allTypes) { (success, error) in
if !success {
print(error?.localizedDescription ?? "")
}
}
}
从头开始重新安装应用程序,现在它应该可以正常工作了。
使用来自 SpeedySloth 的 Apple 示例代码,我在模拟器上获取了心率样本,但在我的 Series 0 Apple Watch 运行 WatchOS 4.1 上没有获取任何样本。这是一个错误吗?还有谁有相同的问题吗?
代码:
func startHeartRateQuery(from startDate: Date, updateHandler: @escaping ([HKQuantitySample]) -> Void) {
let typeIdentifier = HKQuantityTypeIdentifier.heartRate
startQuery(ofType: typeIdentifier, from: startDate) { _, samples, _, _, error in
guard let quantitySamples = samples as? [HKQuantitySample] else {
print("Heart rate query failed with error: \(String(describing: error))")
return
}
print("heartRate samples = \(quantitySamples)")
updateHandler(quantitySamples)
}
}
//Generic helper function
private func startQuery(ofType type: HKQuantityTypeIdentifier, from startDate: Date, handler: @escaping
(HKAnchoredObjectQuery, [HKSample]?, [HKDeletedObject]?, HKQueryAnchor?, Error?) -> Void) {
let datePredicate = HKQuery.predicateForSamples(withStart: startDate, end: nil, options: .strictStartDate)
let devicePredicate = HKQuery.predicateForObjects(from: [HKDevice.local()])
let queryPredicate = NSCompoundPredicate(andPredicateWithSubpredicates:[datePredicate, devicePredicate])
let quantityType = HKObjectType.quantityType(forIdentifier: type)!
let query = HKAnchoredObjectQuery(type: quantityType, predicate: queryPredicate, anchor: nil,
limit: HKObjectQueryNoLimit, resultsHandler: handler)
query.updateHandler = handler
healthStore.execute(query)
activeDataQueries.append(query)
}
我最终将我的手表从系列 0 升级到系列 3,并且在 WatchOS 4.1 上获取心率不再有任何问题。问题可能与硬件有关。发布更新以显示我上面的代码非常适合提取心率数据。
我在使用 SpeedySloth 应用程序收集数据时遇到了几个问题。花了 4 天的时间阅读了关于该主题的所有 SO post 并尝试了我能想到的一切。我最终从我的计算机上删除了所有旧的 Xcode 版本(我现在只安装了 9.2)并且我还删除了 ~/Library/Logs/CoreSimulator/
中的所有模拟器文件并且它最终可以工作。奇怪。
我有一个类似的问题,我已经解决了很长时间。出于某种原因,尽管在查询中设置了 updateHandler
,但即使将新样本添加到 HealthStore,它也不会被触发。我认为这是最新 OS (4.2) 的问题。
作为替代方案,我一直使用刷新的查询锚点每 5 秒轮询一次 HealthStore。它现在按预期工作。我有一个状态变量,用于检查是否继续轮询。
我在同一 Apple 示例代码上遇到了完全相同的问题。几个月前在 WatchOS 4.1 上试过之后,我可以放心地假设它从 4.2 开始就坏了。
不过,我只需向保健品商店申请必要的 HK 授权,就能让它发挥作用。只需覆盖初始值设定项或 HealthStoreManager.swift 就像这样:
// HealthStoreManager.swift
override init() {
super.init()
let allTypes = Set([HKObjectType.workoutType(),
HKSeriesType.workoutRoute(),
HKObjectType.quantityType(forIdentifier: .activeEnergyBurned)!,
HKObjectType.quantityType(forIdentifier: .distanceWalkingRunning)!])
healthStore.requestAuthorization(toShare: allTypes, read: allTypes) { (success, error) in
if !success {
print(error?.localizedDescription ?? "")
}
}
}
从头开始重新安装应用程序,现在它应该可以正常工作了。