gpt4 book ai didi

iPhone 获取所有专辑/艺术家

转载 作者:行者123 更新时间:2023-12-03 18:28:05 25 4
gpt4 key购买 nike

你们中有人有如何从 iPod 媒体库中检索所有音乐专辑或艺术家的示例代码(或其链接)吗?

提前致谢!

最佳答案

使用 MPMediaQuery:

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

allItems 数组现在包含 MPMediaItemCollections,分组是按专辑完成的。现在您可以遍历数组了。

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

关于iPhone 获取所有专辑/艺术家,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3940985/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com