我的代码是:
if ([CMPedometer isStepCountingAvailable]) {
self.pedometer = [[CMPedometer alloc] init];
}
else {
NSLog(@"Step counting is not available on this device!");
[SVProgressHUD showErrorWithStatus:@"Step counting is not available on this device!"];
}
当我在iOS8及更高版本的设备上运行它时,它会说:
此设备无法进行计步!
如何使其可用于步数计算?
答案 0 :(得分:7)
您的代码是正确的,它会产生预期的结果。 iPhone 5没有硬件(Apple M7芯片)来跟踪步数,因此步进计数不可用。
你至少需要iPhone 5s
答案 1 :(得分:1)
iPhone 4s,5和5c没有M7运动传感器协处理器,因此不会记录步骤。 iPhone 5s,6和6 Plus都配有动作协处理器。