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.
