Is there a way to change the volume of the device? I\'ve seen several apps do it.
I have a desktop version of the iOS app and the device will be able to be controll
Using iPodMusicPlayer would affect the actual iPod volume setting as well. If you want to avoid that, use this:
#import
// ...
MPMusicPlayerController *musicPlayer = [MPMusicPlayerController applicationMusicPlayer];
musicPlayer.volume = 1.0f;
As the user holex correctly mentioned the property volume in MPMusicPlayerController is deprecated in iOS 7.