デバイス上のすべての曲で満たされた「曲」 NSMutableArray があります。
MPMediaQuery *everything = [MPMediaQuery songsQuery];
NSArray *songCollections = [everything collections];
songs = [NSMutableArray array];
for (MPMediaItemCollection *song in songCollections) {
MPMediaItem *representativeItem = [song representativeItem];
[songs addObject:representativeItem];
}
アルバムごとに並べ替える方法はありますか?私は追加することに気づきました
[everything setGroupingType:MPMediaGroupingAlbum];
奇妙な結果を生成します(各アルバムの最初の曲を配列にプッシュするだけです)
前もって感謝します