I wants to get multiple artists tracks from iPod Library . The following code allow me to get specific artist tracks like -
MPMediaQuery *query = [[MPMediaQuery alloc] init];
[query addFilterPredicate: [MPMediaPropertyPredicate
predicateWithValue:@"Lady Gaga"
forProperty: MPMediaItemPropertyArtist]];
[query setGroupingType: MPMediaGroupingAlbum];
NSArray *albums = [query collections];
is it possible to get multiple artists tracks like Lady Gaga & Akon tracks only single query predicateWithValue sepearted by ; OR /
Example-
[query addFilterPredicate: [MPMediaPropertyPredicate
predicateWithValue:@"Lady Gaga/ Akon"
forProperty: MPMediaItemPropertyArtist]];
Please help me how to meet my requirement .