每当我使用MPMediaItemCollection
转换MPMediaItemPropertyAssetURL
为数据时,我都会得到空值?
这是我的代码
MPMediaItemCollection *collection=[allAlbumsArray objectAtIndex:indexPath.row];
MPMediaItem *item = [collection representativeItem];
NSLog(@" songs titles_str url is===>%@",[item valueForProperty:MPMediaItemPropertyAssetURL]);
NSLog(@"class type is %@",[[item valueForProperty:MPMediaItemPropertyAssetURL] class]);
self.songData=[NSData dataWithContentsOfURL:[item valueForProperty:MPMediaItemPropertyAssetURL]];
NSLog(@"original data is %@",self.songData);
在这里,我正在获取歌曲的网址ipod-library://item/item.mp3?id=-9207595762773025867
但是当我转换成数据时,我得到空值感谢提前。