我的任务是实时获取脉搏数据。为此,我使用锻炼会话类型“其他”将数据保存在HealthKit中。 问题在于,在使用此类型的健身课程以及其他经过测试的健身课程(例如瑜伽,跑步等)时,活动环会被塞满。 如何摆脱它?请帮助我,这个问题让我醒着。
所有类型的锻炼课程 尝试在会话完成后不将数据存储到HealthKit
HKWorkoutConfiguration *config = [HKWorkoutConfiguration new];
config.activityType = HKWorkoutActivityTypeOther;
config.locationType = HKWorkoutSessionLocationTypeIndoor;
HKWorkoutSession *wSession = [[HKWorkoutSession alloc] initWithConfiguration:config error:&error];
[self.healthStore startWorkoutSession:wSession];
[self.healthStore endWorkoutSession:self.workoutSession];