Reputation: 506
I need to implement a volume control for an app. I have no idea where to start because the docs on CoreAudio aren't great in number, and I'm a beginner with this.
Does anyone have a reference (other than the Apple Docs) or example?
Upvotes: 1
Views: 1787
Reputation: 12269
This tutorial has an example on how to create a volume control within the tutorial:
Playing Audio on an iPhone using AVAudioPlayer (iOS 4)
To reference search for this component:
UISlider *volumeControl;
Good luck!
Upvotes: 1