试图找到一种方法来检测M7的存在。
如果 M7 不存在,查询 CMStepCounter 或 CMMotionActivity 类是否毫无意义?我的猜测是,在具有iOS 7.0的非M7型号上,这些类获取数据,但效率不高,并且使用更多的电池。
粗略的方法是:
struct utsname systemInfo;
uname(&systemInfo);
model = [[NSString alloc] initWithCString:systemInfo.machine
encoding:NSUTF8StringEncoding];
version = [[NSString alloc] initWithString:[[UIDevice currentDevice] systemVersion]];
if ([model compare:@"iPhone6,1"]) {
}
使用 Apple 提供的 API:
if ([CMStepCounter isStepCountingAvailable]) {
// The device supports step counting
} else {
// The device does not support step counting
}
if ([CMMotionActivityManager isActivityAvailable]) {
// You can use CMMotionActivity
} else {
// Nope, not supported
}
当然,此 API 仅适用于 iOS 7 或更高版本。因此,如果您需要支持 iOS 5 或 6,那么您也需要将此代码包装在 CMStepCounter
类的检查中。