Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Detect iPhone Volume Button Hold? (iOS 8)

Is there a way to detect if any of the volume buttons on the iPhone are being held?

I know you can detect if one has been pressed, but I specifically need to know if one is being held down.

like image 728
Philip Hardy Avatar asked Jan 30 '15 02:01

Philip Hardy


1 Answers

That's not really possible, but you can have an approximation starting a timer every time you get a volume button pressed event, since you'll receive multiple events in succession when the button is hold. If every time you restart the timer, when the button is released the timer will get triggered and you can do whatever you want. 0.5 seconds worked for me.

like image 97
Luca Torella Avatar answered Sep 20 '22 16:09

Luca Torella