jpsim / JPSVolumeButtonHandler

JPSVolumeButtonHandler provides an easy block interface to hardware volume buttons on iOS devices. Perfect for camera apps!
MIT License
333 stars 90 forks source link

Music stops when app starts and sets buttonHandler #39

Closed kronik closed 7 years ago

kronik commented 7 years ago

Music stops when app starts and sets buttonHandler. Figured out that session category is set incorrectly. Tried with AVAudioSessionCategoryAmbient and music works fine now.

jpsim commented 7 years ago

We used to have AVAudioSessionCategoryAmbient, but that was changed to Playback in #22 and again to PlayAndRecord in #32. See those PRs for the motivations why we changed this.

However, maybe it would be worth exposing a way for users to specify which mode to use?

kronik commented 7 years ago

@jpsim Exposing it as a property (or a constructor parameter) sounds really good.

kronik commented 7 years ago

Added a PR

kronik commented 7 years ago

@jpsim any thoughts on PR?

jpsim commented 7 years ago

Merged.