iPhone手机中内置了距离传感器,位置在手机的听筒附近,当我们在打电话的时候靠近听筒,手机的屏幕会自动熄灭,这就靠距离传感器来控制。
在我们开发app时,如果需要,也可以调用距离传感器的一些接口方法。距离传感器的接口十分简单,主要通过通知中心来对距离的改变进行通知。
首先,我们需要开启距离传感器应用:
[UIDevice currentDevice].proximityMonitoringEnabled=YES;
监听距离改变的通知:
[[NSNotificationCenter defaultCenter]addObserver:self selector:@selector(notice) name:UIDeviceProximityStateDidChangeNotification object:nil];
在回调方法中,我们可以通过下面这个属性来监听距离状态:
-(void)notice{
if ([UIDevice currentDevice].proximityState) {
NSLog(@"近距离");
}else{
NSLog(@"远距离");
}
}