iPhone 上的近距离监控无需黑屏?
我能够在 iPhone SDK 上检测接近度,但只要触发接近状态,屏幕就会黑屏。
有没有办法可以防止接近传感器使屏幕变黑,但仍然监视接近传感器的状态?
谢谢!
I'm able to detect proximity on the iPhone SDK, but the screen blacks out whenever the proximity state is triggered.
is there a way I can prevent the proximity sensor from blacking out the screen, but still monitor a proximity sensor's state?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您通常可以覆盖
-(void)proximityStateChanged:(BOOL)
更改的方法并在那里执行您的操作,仍然获得更改后的 BOOL 状态。You could normally override the
-(void)proximityStateChanged:(BOOL)
changed method and do your thing in there, still getting the changed BOOL state.