iPhone get all albums/artists

前端 未结 3 2005
说谎
说谎 2021-02-04 11:48

does any of you have example code (or a link to it) of how to retrieve all music albums or artist from the iPod media library?

Thanks in advance!

3条回答
  •  轮回少年
    2021-02-04 12:30

    Use a MPMediaQuery:

    MPMediaQuery *allAlbumsQuery = [MPMediaQuery albumsQuery];
    NSArray *allAlbumsArray = [allAlbumsQuery collections];
    

    The allItems array does now contain MPMediaItemCollections, grouping is done by album. Now you can walk through the arrays.

    for (MPMediaItemCollection *collection in allAlbumsArray) {
        MPMediaItem *item = [collection representativeItem];
    }
    

提交回复
热议问题