MPMediaItemCollection
データへの変換を使用しているときはいつでも、null値を取得してい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);
ここで私は曲のURLを取得していますipod-library://item/item.mp3?id=-9207595762773025867
しかし、データに変換するとnull値が返されます。よろしくお願いします。