我希望获取用户库中所有艺术家的MPMediaItemCollection
或NSArray
。这是我当前的代码(显然不起作用):
- (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;
}
最佳答案
有关艺术家列表,请使用MPMediaItemPropertyArtist
而不是MPMediaPlaylistPropertyName
作为媒体项目属性键。
由于您的数据源使用的是MPMediaItemCollection
,请使用representativeItem
属性获取每个集合的艺术家标题字符串。
然后将textLabel
的文本设置为艺术家字符串。
MPMediaItemCollection *artistCollection = self.artistsArray[indexPath.row];
NSString *artistTitle = [[artistCollection representativeItem] valueForProperty:MPMediaItemPropertyArtist];
cell.textLabel.text = artistTitle;
关于ios - 从iOS媒体库中获取所有艺术家的列表,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/14548301/