I want to implement a volume shutter in my camera app. When the user presses the volume button, I should get an event to take a photo.
I'm looking for an implementation that meets the following requirements:
- It should work even if the volume is currently at the maximum, and the user presses the volume up button.
- There should be no on-screen UI showing that the volume changed.
- There should be no known cases of Apple rejecting an app that used this technique.
Other questions and answers exist on this topic, but for older versions of iOS, so I wanted to find one that works on iOS 11.
Camera apps like ProCamera, ProCam and Camera+ have the volume shutter that satisfies all these conditions, so it's clearly possible.
So here is the code that will meet all your requirements – I'm not sure whether or not Apple will approve this though.
I've pulled all this code from questions/answers here on StackOverflow.
You need to use the
AVFoundation
andMediaPlayer
frameworks for this to work.Update
If you want to make sure your code is still working after the user exits the app, use the AppDelegate to install the observer when the app becomes active, like this:
AppDelegate
ViewController