WWDC 2014 Session 612 (45:14)重点介绍如何检查 Core Motion Services 的授权状态:
- (void)checkAuthorizationvoid (^)(BOOL authorized))authorizationCheckCompletedHandler {
NSDate *now = [NSDate date];
[_pedometer queryPedometerDataFromDate:now toDate:now withHandler:^(CMPedometerData *pedometerData, NSError *error) {
// Because CMPedometer dispatches to an arbitrary queue, it's very important
// to dispatch any handler block that modifies the UI back to the main queue.
dispatch_async(dispatch_get_main_queue(), ^{
authorizationCheckCompletedHandler(!error || error.code != CMErrorMotionActivityNotAuthorized);
});
}];
}
虽然这可行,但第一次调用 -queryPedometerDataFromDate:toDate:withHandler: 将通过系统对话框提示用户进行授权。我宁愿检查状态,而不必出于明显的用户体验原因征求用户的许可。
我正在努力实现的目标是可能的,还是我只是以错误的方式考虑 API?
Best Answer-推荐答案 strong>
对于 iOS 11:使用 CMPedometer.authorizationStatus() 方法。通过调用此方法,您可以确定您是否被授权、拒绝、限制或未确定。
https://developer.apple.com/documentation/coremotion/cmpedometer/2913743-authorizationstatus
对于运行 iOS 9-10 的设备,请使用 CMSensorRecorder.isAuthorizedForRecording()。
以下方法适用于所有运行 iOS 9-11 的设备:
var isCoreMotionAuthorized: Bool {
if #available(iOS 11.0, *) {
return CMPedometer.authorizationStatus() == .authorized
} else {
// Fallback on earlier versions
return CMSensorRecorder.isAuthorizedForRecording()
}
}
关于ios - 在提示用户之前确定Core Motion Services(例如M7)的授权状态?,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/28158270/
|