12

当我尝试MPMediaPickerController在 iOS 模拟器上使用 运行应用程序时,会发生以下情况。

2012-05-28 22:26:42.416 My App[48426:11f03] Could not load source: 3
2012-05-28 22:26:42.418 My App[48426:11f03] *** Assertion failure in -[MPMediaPickerController loadView], /SourceCache/MediaPlayer_Sim/MobileMusicPlayer-1391.72/SDK/MPMediaPickerController.m:86
2012-05-28 22:26:42.419 My App[48426:11f03] *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Unable to load iPodUI.framework'

这是我的 App/Xcode/iOS 模拟器中的一些问题,还是 iOS 模拟器根本不支持MPMediaPickerController?如果没有,除了在物理设备上运行之外,还有其他选择吗?

4

3 回答 3

15

MPMediaPickerController 在模拟器中不起作用。Apple在“Hello Music Player”下的“ iPod Library Access Programming Guide ”中对此进行了说明。笔记说:

注意:要执行这些步骤,您需要一个预配置的设备,因为模拟器无法访问设备的 iPod 库。

为了防止断言,您可以随时检查您是否可以在代码中访问执行此操作(下面的代码使用 ARC 和 iOS SDK 5.0)。

MPMediaPickerController *picker = [[MPMediaPickerController alloc] initWithMediaTypes:MPMediaTypeAnyAudio];

[picker setDelegate:self];
[picker setAllowsPickingMultipleItems:YES];
[picker setPrompt:NSLocalizedString(@"Add songs to play","Prompt in media item picker")];

@try {
    [picker loadView]; // Will throw an exception in iOS simulator
    [self presentViewController:picker animated:YES completion:nil];
}
@catch (NSException *exception) {
    [[[UIAlertView alloc] initWithTitle:NSLocalizedString(@"Oops!",@"Error title")
                                message:NSLocalizedString(@"The music library is not available.",@"Error message when MPMediaPickerController fails to load") 
                               delegate:nil 
                      cancelButtonTitle:@"OK" 
                      otherButtonTitles:nil] show];
}
于 2012-05-31T20:17:38.207 回答
2

另外(如果使用故事板)你可以试试:

- (IBAction)showPicker:(id)sender
{
#if TARGET_IPHONE_SIMULATOR
    UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"playerTest"
                                                    message:@"Media picker didn't work in simulator, please run this app on device"
                                                   delegate:nil
                                          cancelButtonTitle:@"OK"
                                          otherButtonTitles:nil];
    [alert show];
#else
    [self performSegueWithIdentifier:@"ShowPickerViewSegue" sender:self];
#endif
}
于 2012-11-29T02:56:22.287 回答
0

MPMediaPickerController现在可以在 iOS 模拟器中工作,无需任何额外的代码更改(至少从 iOS 8 开始,可能更早)。这是一个可以演示它的项目:GVMusicPlayerController

您必须通过从实际设备复制必要的文件(最重要的是MediaLibrary.sqlitedb数据库文件)来准备模拟器中的音乐库。如果您想播放文件并查看图稿,您还必须复制iTunes_Control/MusicPurchasesArtwork文件夹(在 中找到/var/mobile/Media/)。有关详细信息,请参阅此问题:我可以在模拟器上访问 iPod 库吗?.

于 2016-10-11T11:42:31.227 回答