超精准的iOS计步器实现代码
时间:2021-04-11 08:53:48|栏目:iOS代码|点击: 次
本文实例为大家分享了iOS计步器实现代码,供大家参考,具体内容如下
#import "ViewController.h" #import <CoreMotion/CoreMotion.h> @interface ViewController () @property (nonatomic, strong) CMStepCounter *conter; @property (weak, nonatomic) IBOutlet UILabel *stepLabel; @end @implementation ViewController - (void)viewDidLoad { [super viewDidLoad]; // 1、判断计步器是否可用 if (![CMStepCounter isStepCountingAvailable]) {return;} // 2、开始计步 [self.conter startStepCountingUpdatesToQueue:[NSOperationQueue mainQueue] updateOn:5 withHandler:^(NSInteger numberOfSteps, NSDate * _Nonnull timestamp, NSError * _Nullable error) { self.stepLabel.text = [NSString stringWithFormat:@"一共走了%ld步", numberOfSteps]; }]; } - (CMStepCounter *)conter{ if (_conter == nil) { _conter = [[CMStepCounter alloc] init]; } return _conter; }
效果图:
栏 目:iOS代码
下一篇:iOS框架AVFoundation实现相机拍照、录制视频
本文标题:超精准的iOS计步器实现代码
本文地址:http://www.codeinn.net/misctech/98797.html