I've created an app that uses MPMusicPlayerController.
MPMusicPlayerController *musicPlayer = [MPMusicPlayerController iPodMusicPlayer];
I've created a NavigationController that has "Add button" set as the rightBarButtonItem, and a UITableView that show the selected songs as playlist.
When the "Add button" was tapped, a MPMediaPickerController will be push on NavigationController so that the user can select MPMediaItems.
The musicPlayer's que will be set when media Items (MPMediaItemCollection) were selected on MPMediaPickerController.
[musicPlayer setQueueWithItemCollection: mediaItemCollections];
Then the tableView will be populated with the songs detail. The tableView has a method that when a certain cell was selected, it will play the song associated with that cell.
There are times that after I selected one cell(represents one song on the collection) the musicPlayer will play the selected Items and I cannot stop it anymore.
I've added a code that will respond when the playback was change
[[NSNotificationCenter defaultCenter]addObserver: self selector: @selector(playbackChanged) name: MPMusicPlayerControllerPlaybackStateDidChangeNotification object: nil];
When the previous problem that I stated was occured the MPMusicPlayerControllerPlaybackStateDidChangeNotification was posted more than once.
I had a button that will play/stop the music, but sometimes the musicPlayer won't respond when I call [musicPlayer stop/play]; It seems the connection had lost. I can only stop the music when I go the the Music app.
This is a universal app, I only experienced this problem on the iPad, iOS 5.0.1. Does anyone had experienced this?