I just saw iOS 5.1 for iOS 6.0 API Differences released by Apple. They say that some important methods MPMusicPlayerController.hare deleted in the protocol MPMediaPlayback(play, pause, stop ...).
Does anyone know how to update my application that uses the code below to work with iOS 6?
MPMusicPlayerController *musicPlayer = [MPMusicPlayerController iPodMusicPlayer];
musicPlayer play;
source
share