I have set up my AVAudioSession to play music in the background
AVAudioSession *audioSession = [AVAudioSession sharedInstance];
NSError *setCategoryError = nil;
[audioSession setCategory:AVAudioSessionCategoryPlayback error:&setCategoryError];
if (setCategoryError) {
}
NSError *activationError = nil;
[audioSession setActive:YES error:&activationError];
if (activationError) {
}
Also added 'Required background modes' in my plist file.
When I play a remote file and the iPhone enters the background the audio keeps playing as suspected. But when I play a song from the iPod inside my app (MPMediaItem URL) it won't continue to play in the background.
What am I missing?