0
以下代碼檢索出現在我的iPhone中的所有歌曲,但我想要檢索數組中的所有歌曲。我的意思是我可以有陣列中的歌曲名稱陣列嗎?如果是,那該怎麼辦?如何檢索數組中歌曲庫的歌曲列表?
Thanks-
MPMediaPickerController *picker = [[MPMediaPickerController alloc] initWithMediaTypes: MPMediaTypeMusic];
picker.delegate = self;
picker.allowsPickingMultipleItems = YES;
picker.prompt = NSLocalizedString (@"Add songs to play", "Prompt in media item picker");
[[UIApplication sharedApplication] setStatusBarStyle: UIStatusBarStyleDefault animated: YES];
[self presentModalViewController: picker animated: YES];
[picker release];
感謝Espresso! – Developer