Valerii  Pavlov
Valerii Pavlov

Reputation: 2033

Control AVAudioPlayer via Apple iPhone Earpods

Im using AVAudioPlayer to play audio files in audiobook application. How can i solve problem of unsupported earpods control actions?

For example, when i double press home button and player controls shown on screen (◄◄, ►, ►► for rewind/play/forward) - this buttons are not responding on pressing. Earpods joystick dont work too (except volume control), I mean joystick middle button usage to control playback/pause.

Upvotes: 0

Views: 189

Answers (1)

Dave Batton
Dave Batton

Reputation: 8845

Start with a call to -[UIApplication beginReceivingRemoteControlEvents]. The rest of what you need is in the UIResponder class.

Upvotes: 1

Related Questions