gpt4 book ai didi

ios - 步数更新时调用

转载 作者:行者123 更新时间:2023-11-28 15:14:12 25 4
gpt4 key购买 nike

现在,我正在尝试设置我的应用程序,以便在用户更新他们的步数时调用一个函数。到目前为止,我有以下代码:

let steps: HKObjectType = HKObjectType.quantityType(forIdentifier: .stepCount)!
if healthStore.authorizationStatus(for: steps) != HKAuthorizationStatus.notDetermined {
healthStore.enableBackgroundDelivery(for: steps, frequency: .immediate, withCompletion: { (worked, error) in
//registers for background data
if error != nil {
print(error)
}
})
let sampleType = HKSampleType.quantityType(forIdentifier: HKQuantityTypeIdentifier.stepCount)!
let query = HKObserverQuery(sampleType: sampleType, predicate: nil) {
query, completionHandler, error in

if error != nil {
print(error)
abort()
}

// Take whatever steps are necessary to update your app's data and UI
// This may involve executing other queries
self.getSteps(completion: { (stepCount) in
print("Step count was updated to \(stepCount)")
})
completionHandler()
}

healthStore.execute(query)
}

然而,当用户的 stepCount 在后台更新时,这不会被调用,尽管 getSteps 方法在前台工作。我这样做是否正确,或者我正在尝试做的事情根本不可能?

最佳答案

您的代码看起来是正确的。您是在模拟器上而不是在真实设备上运行它吗?我最近遇到了这个问题,后台交付在模拟器中根本不起作用,但它在真实设备中有效

关于ios - 步数更新时调用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47163582/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com