Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to retrieve playlist from iPod Library with MPMediaQuery in iOS. And i want to show in UITableView.

Here is my codes in ViewDidLoad.

    MPMediaQuery *myQuery = [[MPMediaQuery alloc] init];
    [myQuery setGroupingType: MPMediaGroupingPlaylist];
    arrayOfPlaylist = [myQuery collections];

And In UItableViewCell Method

    static NSString *CellIdentifier = @"Cell";

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil)
    {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
    }

    for(int i=0;i<self.arrayOfPlaylist.count;i++)
    {
        dic = [self.arrayOfPlaylist objectAtIndex:0];
        cell.textLabel.font = [UIFont systemFontOfSize:10];
        cell.textLabel.text = [NSString stringWithFormat:@"%@",[self.arrayOfPlaylist objectAtIndex:indexPath.row]];
    }

    return cell;

After i write above codes , in my UItableView i only got following messages.

<MPConcreteMediaPlaylist : 0x1e51afd0>

I don't know what is that and how to convert playlist name into String. When i test with NSLog Method , my playlist count is correct.

But i only got above message and no playlist name in UITableView.

I am just a beginner in iOS.

Please help me to show playlist in UItableView.

share|improve this question

2 Answers

Playlist can be explored like this:

MPMediaQuery *myQuery = [[MPMediaQuery alloc] init];

arrayOfPlaylist = [myQuery collections];

for (MPMediaPlaylist *playlist in arrayOfPlaylist) {
    NSLog (@"Playlist :%@", [playlist valueForProperty: MPMediaPlaylistPropertyName]);
    NSArray *songs = [playlist items];
    for (MPMediaItem *song in songs) {
        NSString *strSongTitle =
            [song valueForProperty: MPMediaItemPropertyTitle];
        NSLog (@"Title : %@", strSongTitle);
    }
}
share|improve this answer
that's show alot of whole songs from Library. I only want to show Playlist name bro. How could i? – i-Developer-i Dec 27 '12 at 10:41
Answer edited : NSLog (@"Playlist :%@", [playlist valueForProperty: MPMediaPlaylistPropertyName]); – Prince Dec 27 '12 at 10:43
only return a lot of NULL value. – i-Developer-i Dec 27 '12 at 10:46
up vote 1 down vote accepted

I got my answer for my own question.

here is it.

MPMediaQuery *query = [MPMediaQuery playlistsQuery]; 
NSArray *playlists = [query collections];

for(int i = 0; i < [playlists count]; i++) 
{
NSLog(@"Playlist : %@", [[playlists objectAtIndex:i] valueForProperty: MPMediaPlaylistPropertyName]);
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.