我是靠谱客的博主 虚拟咖啡,最近开发中收集的这篇文章主要介绍超精准的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计步器实现代码所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(128)

评论列表共有 0 条评论

立即
投稿
返回
顶部