2
這是我怎麼樣了代碼來打開媒體選擇列表如何獲取使用MPMediaPickerController選擇的文件的路徑?
- (void)viewDidLoad
{
[super viewDidLoad];
player=[MPMusicPlayerController iPodMusicPlayer];
picker=[[MPMediaPickerController alloc] initWithMediaTypes:MPMediaTypeAnyAudio];
[picker setDelegate:self];
[email protected]"Add an audio to application";
}
我也履行了委託方法
- (void)mediaPicker:(MPMediaPickerController *)mediaPicker didPickMediaItems:(MPMediaItemCollection *)mediaItemCollection
{
/*I know only here I can get path but don't know how?
mediaItemCollection don't have such kind of properties or any
method to get selected file path.
So is there any other way to do so?
Note: I required this path, so that I can store it somewhere and can play it in future.
*/
}
NSData * someData = [NSData dataWithContentsOfURL:yourURLVariable]; – tams 2013-04-24 20:38:56