gpt4 book ai didi

swift - 谓词中的 HKQueryOptions

转载 作者:行者123 更新时间:2023-11-30 12:22:22 27 4
gpt4 key购买 nike

我正在尝试使用谓词从 HealthKit 获取过去 30 天的数据。许多在线教程都使用 .None 作为他们的 HKQueryOption,并且由于我不熟悉 HKQueryOptions,我想知道是否还有其他人知道什么可以替代 .None 在这种情况下。目前,我已将 .None 作为 HKQueryOptions 但这会导致我的错误。“None”不可用:使用[]构造一个空选项集当我输入 [] 并打印 结果 时,它会返回为 []

这是我声明谓词的查询函数

let sampleType = HKSampleType.quantityType(forIdentifier: HKQuantityTypeIdentifier.bloodGlucose)
let mostRecentPredicate = HKQuery.predicateForSamples(withStart: startDate, end: endDate, options:.None)
let query = HKSampleQuery(sampleType: sampleType!, predicate: mostRecentPredicate, limit: 35, sortDescriptors: nil) { (query, results, error) in

最佳答案

尝试使用空集文字[]而不是.None:

let mostRecentPredicate = HKQuery.predicateForSamples(withStart: startDate, end:endDate, options:[])

关于swift - 谓词中的 HKQueryOptions,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44640401/

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