当前位置:   article > 正文

获取android手机步数,获取手机健康应用中的步数和距离

android studio 获取计步

废话不多说,直接上步骤

首先新建一个类HealthKitManage,采用单利模式

HealthKitManage.h中导入

#import

#import

1.定义

#define HKVersion [[[UIDevice currentDevice] systemVersion] doubleValue]

#define CustomHealthErrorDomain @"com.sdqt.healthError"

2.定义几个方法

+(id)shareInstance; //单例

- (void)authorizeHealthKit:(void(^)(BOOL success, NSError *error))compltion;

- (void)getStepCount:(void(^)(double value, NSError *error))completion; //获取步数

- (void)getDistance:(void(^)(double value, NSError *error))completion; //获取距离

HealthKitManage.m中

1.单例

+(id)shareInstance{ //单例

static id manager ;

static dispatch_once_t onceToken;

dispatch_once(&onceToken, ^{

manager = [[[self class] alloc] init];

});

return manager;

}

2.实现其他方法

/*

* @brief 检查是否支持获取健康数据

*/

- (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];

/*

组装需要读写的数据类型

*/

NSSet *writeDataTypes = [self dataTypesToWrite];

NSSet *readDataTypes = [self dataTypesRead];

/*

注册需要读写的数据类型,也可以在“健康”APP中重新修改

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家自动化/article/detail/395914
推荐阅读
相关标签
  

闽ICP备14008679号