防止iOS接近传感器将屏幕变黑

我已经看过这个问题几次,但没有人回答 – 事实上这可能是不可能的,但我想知道是否有一种方法来防止在iPhone上的proximityState更改时屏幕变黑。

我已经实现了一种方法来做一些事情,当接近状态改变,但屏幕闪烁黑色,我想避免这一点。 这是我的代码:

[nc addObserver:self selector:@selector(proximityChanged:) name:UIDeviceProximityStateDidChangeNotification object:d]; - (void)proximityChanged:(NSNotification *)note { if ([[note object] proximityState] == 1) { // Do something once the face is close // This is where it goes to black } else { // Do something once the face pulls away } } 

可悲的是,目前的公共API不允许你这样做。 您可能希望通过Apple Bug Reporter提交增强请求: http : //developer.apple.com/bugreporter/