Detect iPhone Volume Button Hold? (iOS 8)

2019-04-08 08:58发布

问题:

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.

回答1:

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.