/**
- @title: iOS利用HealthKit框架從健康app中獲取步數(shù)信息
- 1.第一步首先需要開啟HealthKit
- TARGETS -> Capabilities -> HealthKit -> YES
- 在此目錄欄下,有一個steps,會顯示一個?
- eg:add the "HealthKit" entitlement to your app id
- 這是 你可能需要Fix issue ,這時候可能會在項目中出現(xiàn).entitlements 文件
- 相關(guān)處理請自行查資料直到ok為止
- 2.新建一個HealthKitManage類,繼承于NSObject
- (1)導(dǎo)入頭文件
-
import <HealthKit/HealthKit.h>
-
import <UIKit/UIKit.h>
-
define HKVersion [[[UIDevice currentDevice] systemVersion] doubleValue]
-
define CustomHealthErrorDomain @"com.sdqt.healthError
- 相關(guān)的方法請自行查看 HealthKitManage.h & HealthKitManage.m 文件(已封裝)
- 3.相關(guān)的調(diào)用
- HealthKitManage *manage = [HealthKitManage shareInstance];
- 然后調(diào)用相關(guān)的方法(對象 + 方法名)
- 4.參考博客:http://www.itdecent.cn/p/1dd6ad5b1520
*/
代碼如下: 只要新建一個文件即可
//----------------------------------------------------
import <Foundation/Foundation.h>
import <HealthKit/HealthKit.h>
import <UIKit/UIKit.h>
@interface HealthKitManage : NSObject
@property(nonatomic,strong)HKHealthStore *healthStore;
/**
- 2.創(chuàng)建單例
*/
+(id)shareInstance;
/*
- 3.檢查是否支持獲取健康數(shù)據(jù)
- @brief 檢查是否支持獲取健康數(shù)據(jù)
*/
- (void)authorizeHealthKit:(void(^)(BOOL success, NSError *error))compltion;
/*
- 4.獲取步數(shù)
*/
- (void)getStepCount:(void(^)(double value, NSError *error))completion;
/**
- 5.獲取公里數(shù)
- 讀取步行+跑步距離
*/
- (void)getDistance:(void(^)(double value, NSError *error))completion;
@end
//------------------------------------------------
import "HealthKitManage.h"
/* 1.導(dǎo)入頭文件 */
define HKVersion [[[UIDevice currentDevice] systemVersion] doubleValue]
define CustomHealthErrorDomain @"com.sdqt.healthError"
@implementation HealthKitManage
/**
- 2.創(chuàng)建單例
*/
+(id)shareInstance
{
static id manager ;
static dispatch_once_t onceToken;
dispatch_once(&onceToken, ^{
manager = [[[self class] alloc] init];
});
return manager;
}
/*
- 3.檢查是否支持獲取健康數(shù)據(jù)
- @brief 檢查是否支持獲取健康數(shù)據(jù)
*/
-
(void)authorizeHealthKit:(void(^)(BOOL success, NSError *error))compltion
{
if(HKVersion >= 8.0) {
if (![HKHealthStore isHealthDataAvailable]) {
NSError error = [NSError errorWithDomain: @"com.raywenderlich.tutorials.healthkit" code: 2 userInfo: [NSDictionary dictionaryWithObject:@"HealthKit is not available in th is Device" forKey:NSLocalizedDescriptionKey]];
if (compltion != nil) {
compltion(false, error);
}
return;
}
if ([HKHealthStore isHealthDataAvailable]) {
if(self.healthStore == nil)
self.healthStore = [[HKHealthStore alloc] init];
/
組裝需要讀寫的數(shù)據(jù)類型
*/
NSSet *writeDataTypes = [self dataTypesToWrite];
NSSet *readDataTypes = [self dataTypesRead];/* 注冊需要讀寫的數(shù)據(jù)類型,也可以在“健康”APP中重新修改 */ [self.healthStore requestAuthorizationToShareTypes:writeDataTypes readTypes:readDataTypes completion:^(BOOL success, NSError *error) { if (compltion != nil) { NSLog(@"error->%@", error.localizedDescription); compltion (success, error); } }]; }}else {
NSDictionary *userInfo = [NSDictionary dictionaryWithObject:@"iOS 系統(tǒng)低于8.0" forKey:NSLocalizedDescriptionKey];
NSError *aError = [NSError errorWithDomain:CustomHealthErrorDomain code:0 userInfo:userInfo];
compltion(0,aError);
}
}
/*! 3.1
- @brief 寫權(quán)限
- @return 集合
- 設(shè)置需要獲取的權(quán)限:
*/
-
(NSSet *)dataTypesToWrite
{
HKQuantityType *heightType = [HKObjectType quantityTypeForIdentifier:HKQuantityTypeIdentifierHeight];
HKQuantityType *weightType = [HKObjectType quantityTypeForIdentifier:HKQuantityTypeIdentifierBodyMass];
HKQuantityType *temperatureType = [HKQuantityType quantityTypeForIdentifier:HKQuantityTypeIdentifierBodyTemperature];
HKQuantityType *activeEnergyType = [HKObjectType quantityTypeForIdentifier:HKQuantityTypeIdentifierActiveEnergyBurned];return [NSSet setWithObjects:heightType, temperatureType, weightType,activeEnergyType,nil];
}
/*! 3.2
- @brief 讀權(quán)限
- @return 集合
*/
-
(NSSet *)dataTypesRead
{
HKQuantityType *heightType = [HKObjectType quantityTypeForIdentifier:HKQuantityTypeIdentifierHeight];
HKQuantityType *weightType = [HKObjectType quantityTypeForIdentifier:HKQuantityTypeIdentifierBodyMass];
HKQuantityType *temperatureType = [HKObjectType quantityTypeForIdentifier:HKQuantityTypeIdentifierBodyTemperature];
HKCharacteristicType *birthdayType = [HKObjectType characteristicTypeForIdentifier:HKCharacteristicTypeIdentifierDateOfBirth];
HKCharacteristicType *sexType = [HKObjectType characteristicTypeForIdentifier:HKCharacteristicTypeIdentifierBiologicalSex];
HKQuantityType *stepCountType = [HKObjectType quantityTypeForIdentifier:HKQuantityTypeIdentifierStepCount];
HKQuantityType *distance = [HKObjectType quantityTypeForIdentifier:HKQuantityTypeIdentifierDistanceWalkingRunning];
HKQuantityType *activeEnergyType = [HKObjectType quantityTypeForIdentifier:HKQuantityTypeIdentifierActiveEnergyBurned];return [NSSet setWithObjects:heightType, temperatureType,birthdayType,sexType,weightType,stepCountType, distance, activeEnergyType,nil];
}
/*
- 4.獲取步數(shù)
*/
-
(void)getStepCount:(void(^)(double value, NSError *error))completion
{
HKQuantityType *stepType = [HKObjectType quantityTypeForIdentifier:HKQuantityTypeIdentifierStepCount];/** NSSortDescriptors用來告訴healthStore怎么樣將結(jié)果排序。
- NSSortDescriptor *start = [NSSortDescriptor sortDescriptorWithKey:HKSampleSortIdentifierStartDate ascending:NO];
*/
NSSortDescriptor *timeSortDescriptor = [[NSSortDescriptor alloc] initWithKey:HKSampleSortIdentifierEndDate ascending:NO];// Since we are interested in retrieving the user's latest sample, we sort the samples in descending order, and set the limit to 1. We are not filtering the data, and so the predicate is set to nil.
/*查詢的基類是HKQuery,這是一個抽象類,能夠?qū)崿F(xiàn)每一種查詢目標,這里我們需要查詢的步數(shù)是一個
HKSample類所以對應(yīng)的查詢類就是HKSampleQuery。
下面的limit參數(shù)傳1表示查詢最近一條數(shù)據(jù),查詢多條數(shù)據(jù)只要設(shè)置limit的參數(shù)值就可以了
*/
HKSampleQuery *query = [[HKSampleQuery alloc] initWithSampleType:stepType predicate:[HealthKitManage predicateForSamplesToday] limit:HKObjectQueryNoLimit sortDescriptors:@[timeSortDescriptor] resultsHandler:^(HKSampleQuery *query, NSArray *results, NSError *error) {
if(error) {
completion(0,error);
} else {
NSInteger totleSteps = 0;
for(HKQuantitySample *quantitySample in results) {
HKQuantity *quantity = quantitySample.quantity;
HKUnit *heightUnit = [HKUnit countUnit];
double usersHeight = [quantity doubleValueForUnit:heightUnit];
totleSteps += usersHeight;
}
NSLog(@"當天行走步數(shù) = %ld",(long)totleSteps);
completion(totleSteps,error);
}
}];[self.healthStore executeQuery:query];/* 執(zhí)行查詢 */
}
/**
- 5.獲取公里數(shù)
- 讀取步行+跑步距離
*/
-
(void)getDistance:(void(^)(double value, NSError *error))completion
{
HKQuantityType *distanceType = [HKObjectType quantityTypeForIdentifier:HKQuantityTypeIdentifierDistanceWalkingRunning];
NSSortDescriptor *timeSortDescriptor = [[NSSortDescriptor alloc] initWithKey:HKSampleSortIdentifierEndDate ascending:NO];
HKSampleQuery *query = [[HKSampleQuery alloc] initWithSampleType:distanceType predicate:[HealthKitManage predicateForSamplesToday] limit:HKObjectQueryNoLimit sortDescriptors:@[timeSortDescriptor] resultsHandler:^(HKSampleQuery * _Nonnull query, NSArray<__kindof HKSample *> * _Nullable results, NSError * _Nullable error) {if(error){ completion(0,error); }else{ double totleSteps = 0; for(HKQuantitySample *quantitySample in results){ HKQuantity *quantity = quantitySample.quantity; HKUnit *distanceUnit = [HKUnit meterUnitWithMetricPrefix:HKMetricPrefixKilo]; double usersHeight = [quantity doubleValueForUnit:distanceUnit]; totleSteps += usersHeight; } NSLog(@"當天行走距離 = %.2f",totleSteps); completion(totleSteps,error); }}];
[self.healthStore executeQuery:query];
}
/*! 6.NSPredicate當天時間段的方法實現(xiàn)
- @brief 當天時間段
- @return 時間段
*/
-
(NSPredicate *)predicateForSamplesToday {
NSCalendar *calendar = [NSCalendar currentCalendar];
NSDate *now = [NSDate date];
NSDateComponents *components = [calendar components:NSCalendarUnitYear|NSCalendarUnitMonth|NSCalendarUnitDay fromDate:now];
[components setHour:0];
[components setMinute:0];
[components setSecond: 0];NSDate *startDate = [calendar dateFromComponents:components];
NSDate *endDate = [calendar dateByAddingUnit:NSCalendarUnitDay value:1 toDate:startDate options:0];
NSPredicate *predicate = [HKQuery predicateForSamplesWithStartDate:startDate endDate:endDate options:HKQueryOptionNone];
return predicate;
}
@end