2

我希望获取用户库中的一个MPMediaItemCollectionNSArray所有艺术家。这是我当前的代码(显然不起作用):

- (void)viewDidLoad
{
    [super viewDidLoad];
    MPMediaQuery *artistsQuery = [MPMediaQuery artistsQuery];
    self.artistsArray = artistsQuery.collections;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    return self.artistsArray.count;
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"ArtistsCell"];
    cell.textLabel.text = [(MPMediaItemCollection *)self.artistsArray[indexPath.row]   valueForProperty:MPMediaPlaylistPropertyName];
    NSLog(@"%@", cell.textLabel.text);
    return cell;
}
4

1 回答 1

6

对于艺术家列表,使用MPMediaItemPropertyArtist而不是MPMediaPlaylistPropertyName媒体项属性键。

由于您的数据源使用的是MPMediaItemCollection,因此请使用该representativeItem属性来获取每个集合的艺术家标题字符串。

然后将textLabel' 文本设置为艺术家字符串。

MPMediaItemCollection *artistCollection = self.artistsArray[indexPath.row];
NSString *artistTitle = [[artistCollection representativeItem] valueForProperty:MPMediaItemPropertyArtist];
cell.textLabel.text = artistTitle;
于 2013-02-06T20:30:40.413 回答