iOS距离传感器的简单使用

  • 距离传感器主要是检测是否有物品靠近
    • 比如:
    • 打电话如果贴近耳朵,屏幕自动变暗
    • 微信中如果靠近耳朵听语音,屏幕也会自动变暗
    • 默认情况下距离传感器是关闭状态,只需要打开即可
// 打开距离传感器
[UIDevice currentDevice].proximityMonitoringEnabled = YES;

// 通过通知监听有物品靠近还是离开
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(proximityStateDidChange:) name:UIDeviceProximityStateDidChangeNotification object:nil];

- (void)proximityStateDidChange:(NSNotification *)note
{
    if ([UIDevice currentDevice].proximityState) {
        NSLog(@"有物品靠近");
    } else {
        NSLog(@"有物品离开");
    }
}

你可能感兴趣的:(iOS距离传感器的简单使用)