Swift 3:观看 OS 3:嗯,我想通了。HKCategoryTypeIdentifier.mindfulSession
用作将正念会话保存到健康商店的类别类型。我实际上在 watchOS 3 上使用它来存储冥想会话。如下;
// Create Mindfulness category type
let categoryType = HKSampleType.categoryType(forIdentifier: HKCategoryTypeIdentifier.mindfulSession)
// Now create the sample
let smpleObject = HKCategorySample(type: sampleType!, value: HKCategoryValue.notApplicable.rawValue, start: Date().addingTimeInterval(-10000), end: Date())
// Finally save to health store
store.save(smpleObject) { (result:Bool, error:Error?) in
if result{
print("Saved")
}else{
print("error saving mindfulSession",error?.localizedDescription)
}
}
现在,如果您在 iPhone 上打开 Health App,您应该会在正念部分看到一些数据。