I need some help putting the "mediaItemCollection" data in a UITableView.
Code:
// Responds to the user tapping Done after choosing music.
- (void) mediaPicker: (MPMediaPickerController *) mediaPicker
didPickMediaItems: (MPMediaItemCollection *) mediaItemCollection {
[self dismissModalViewControllerAnimated: YES];
[musicPlayer stop];
[[MPMusicPlayerController iPodMusicPlayer] stop];
[[MPMusicPlayerController iPodMusicPlayer] setQueueWithItemCollection:mediaItemCollection];
[[MPMusicPlayerController iPodMusicPlayer] play];
}
The mediaItemCollection is what i need to input into a UITableView (Called Music_List).
Any ideas ? Please leave some code 4 me 2 work with :) Thanks !
EDIT
I found the code :) ( @ http://media.pragprog.com/titles/amiphd/code/MediaLibrary/MusicLibraryClient/Classes/FlipsideViewController.m )
UITableViewCell *cell =
[tableView dequeueReusableCellWithIdentifier:@"song_cell"];
cell = [[UITableViewCell alloc]
initWithStyle:UITableViewCellStyleSubtitle
reuseIdentifier:@"song_cell"];
MPMediaItem *anItem = nil;
anItem = [[collection items] objectAtIndex:indexPath.row];
cell.textLabel.text =
[anItem valueForProperty:MPMediaItemPropertyTitle];
cell.detailTextLabel.text =
[anItem valueForProperty:MPMediaItemPropertyArtist];
where the "collection" is (in .h file): MPMediaItemCollection *collection; and the data in "collection" is set in the picker code:
collection = mediaItemCollection;
and btw; you need 2 reload ;) ( [self.YourTableView reloadData]; )
Up vote for edited post with answer is appreciated ! :)