美文网首页
距离传感器的使用

距离传感器的使用

作者: Areslee | 来源:发表于2016-10-18 16:27 被阅读0次

    //开启距离感应功能

    [UIDevice currentDevice].proximityMonitoringEnabled = YES;

    //监听距离感应的通知

    [[NSNotificationCenter defaultCenter]addObserver:self selector:@selector(proximityChange:) name:UIDeviceProximityStateDidChangeNotification object:nil];

    -(void)proximityChange:(NSNotificationCenter*)notification {

    if([UIDevicecurrentDevice].proximityState==YES)

    {

    NSLog(@"某个物体靠近了设备屏幕");//屏幕会自动锁住

    }else{

    NSLog(@"某个物体远离了设备屏幕");//屏幕会自动解锁

    }

    }

    相关文章

      网友评论

          本文标题:距离传感器的使用

          本文链接:https://www.haomeiwen.com/subject/eirtuttx.html