I would like to hide the volume control overlay in my iOS app. Even when the volume buttons are Pressed.
Does anyone know how this works? Best regards
I would like to hide the volume control overlay in my iOS app. Even when the volume buttons are Pressed.
Does anyone know how this works? Best regards
I think this answer is similar to what you are asking for. I have converted it to Swift:
let volumeView = MPVolumeView(frame: CGRect(x: 0, y: 0, width: 0, height: 0))
self.view.addSubview(volumeView)