繁体   English   中英

iOS Healthkit阅读锻炼

[英]iOS Healthkit reading workouts

嗨,任何人都知道如何从HealthKit获取锻炼数据。 我在本教程中看到http://www.raywenderlich.com/89733/healthkit-tutorial-with-swift-workouts很快。 我已经基于该教程在目标c中进行了尝试,但结果为零。 有保存锻炼的问题,但我想阅读锻炼数据并显示。

HKWorkoutType *workouttype = [HKWorkoutType workoutType];
HKWorkout  *workout;
NSDate *startDate, *endDate;

NSDate *date1 = [NSDate date];
int daysTominus = -2;
startDate = [date1 dateByAddingTimeInterval:60*60*24*daysTominus];
int daysToAdd = 1;
NSDate *newDate1 = [date1 dateByAddingTimeInterval:60*60*24*daysToAdd];
endDate = newDate1;

workout = [HKWorkout workoutWithActivityType:HKWorkoutActivityTypeSwimming startDate:startDate endDate:endDate];

NSPredicate *predicate = [HKQuery predicateForObjectsFromWorkout:workout];

NSSortDescriptor *sortDescriptor = [NSSortDescriptor sortDescriptorWithKey:HKSampleSortIdentifierStartDate ascending:YES];

HKSampleQuery *sampleQuery = [[HKSampleQuery alloc] initWithSampleType:workouttype
                                                             predicate:predicate
                                                                 limit:HKObjectQueryNoLimit
                                                       sortDescriptors:@[sortDescriptor]
                                                        resultsHandler:^(HKSampleQuery *query, NSArray *results, NSError *error)
                              {
                                  if(!error && results){
                                 for(HKQuantitySample *samples in results)
                                  {
                                      // your code here
                                      NSLog(@"%@",samples);
                                  }
                                  }
                              }];

// Execute the query
[healthStore executeQuery:sampleQuery];

问题似乎是您的谓词。

该代码对我有用,我使用跑步是因为我没有游泳数据,但您可以将其更改为游泳:

    -(void)retrieveWorkouts{
    // 1. Predicate to read only running workouts
    NSPredicate *predicate = [HKQuery predicateForWorkoutsWithWorkoutActivityType:HKWorkoutActivityTypeWalking];

    // 2. Order the workouts by date
    NSSortDescriptor *sortDescriptor = [[NSSortDescriptor alloc]initWithKey:HKSampleSortIdentifierStartDate ascending:false];

    // 3. Create the query 
    HKSampleQuery *sampleQuery = [[HKSampleQuery alloc] initWithSampleType:[HKWorkoutType workoutType]
                                                                 predicate:predicate
                                                                     limit:HKObjectQueryNoLimit
                                                           sortDescriptors:@[sortDescriptor]
                                                            resultsHandler:^(HKSampleQuery *query, NSArray *results, NSError *error)
                                  {

                                      if(!error && results){
                                          NSLog(@"Retrieved the following workouts");
                                          for(HKQuantitySample *samples in results)
                                          {
                                              // your code here
                                              HKWorkout *workout = (HKWorkout *)samples;
                                              NSLog(@"%f",workout);
                                          }
                                      }else{
                                          NSLog(@"Error retrieving workouts %@",error);
                                      }
                                  }];

    // Execute the query
    [healthStore executeQuery:sampleQuery];
}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM