#import "ViewController.h"
#import <CoreMotion/CoreMotion.h>
@interface ViewController()
@property (weak, nonatomic) IBOutlet UILabel *stepsCountingLabel; // Connect this outlet to your's label in xib file.
@property (nonatomic, strong) CMStepCounter *cmStepCounter;
@property (nonatomic, strong) NSOperationQueue *operationQueue;
@end
@implementation ViewController
- (NSOperationQueue *)operationQueue
{
if (_operationQueue == nil)
{
_operationQueue = [NSOperationQueue new];
}
return _operationQueue;
}
- (void)viewDidLoad
{
[super viewDidLoad];
if ([CMStepCounter isStepCountingAvailable])
{
self.cmStepCounter = [[CMStepCounter alloc] init];
[self.cmStepCounter startStepCountingUpdatesToQueue:self.operationQueue updateOn:1 withHandler:^(NSInteger numberOfSteps, NSDate *timestamp, NSError *error)
{
[[NSOperationQueue mainQueue] addOperationWithBlock:^{
[self updateStepCounterLabelWithStepCounter:numberOfSteps];
}];
}];
}
}
- (void)updateStepCounterLabelWithStepCounter:(NSInteger)countedSteps
{
self.stepsCountingLabel.text = [NSString stringWithFormat:@"%ld", (long)countedSteps];
}
@end
を次のようにして、しかし、時にはstartStepCountingUpdatesToQueueのブロックがnumberOfStepsを更新遅れるだろう、ということに注意してくださいそれを実装する必要があります。
ありがとう、私は、アプリが閉じられている/携帯電話がロックされているときに取られたステップの量を更新するようではないことに気づいた。これを行う方法はありますか?再度、感謝します。 – Ryan
あなたのアプリのplistファイルに必要な背景モードを指定しましたか? – ldindu
いいえ、私はリストを見つけましたが、どちらを選択するかわかりません:)ありがとう、 – Ryan