我想从 iPod Library 中获取多个艺术家的曲目。以下代码允许我获取特定的艺术家曲目,例如 -
MPMediaQuery *query = [[MPMediaQuery alloc] init];
[query addFilterPredicate: [MPMediaPropertyPredicate
predicateWithValue:@"Lady Gaga"
forProperty: MPMediaItemPropertyArtist]];
[query setGroupingType: MPMediaGroupingAlbum];
NSArray *albums = [query collections];
是否有可能获得像Lady Gaga 和 Akon这样的多位艺术家曲目,只有单个查询predicateWithValue分隔;或/
示例-
[query addFilterPredicate: [MPMediaPropertyPredicate
predicateWithValue:@"Lady Gaga/ Akon"
forProperty: MPMediaItemPropertyArtist]];
请帮助我如何满足我的要求。