vote up 1 vote down star
1

Hi,

I was just wondering whether iPhone developement allows light sensors to be used, as buttons or action elements??

I found this link online...

Possible to use Light Sensor as a Button? [Archive] - Touch Arcade

If anyone could shed some light on the issue, I'd appreciate the help?

Cheers.

Divanshu.

flag

2 Answers

vote up 1 vote down

In the 3.0 SDK the UIDevice class has the proximityState and proximityMonitoringEnabled properties.

BOOL buttonPressed = [UIDevice currentDevice].proximityState;

... gives you the current state.

Keep in mind that the iPod Touch does not have a proximity sensor.

link|flag
vote up 0 vote down

Check out this article. There's some code you can download at the bottom. Also, a related question on SO where I found the link.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.