warning: Unable to read symbols for "/Developer/Platforms/iPhoneOS.platform/DeviceSupport/3.0 (7A341)/Symbols/System/Library/Internet Plug-Ins/QuickTime Plugin.webplugin/QuickTime Plugin" (file not found).
我不确定,但这会导致电影需要很长时间才能加载。
我所说的使用 Safari 播放电影的意思是我使用Safari 的 QuickTime 插件来播放它。我尝试使用MPMoviePlayerController但它不适用于m4v类型的电影。这是我使用的代码。
UIViewController *playViewController = [[UIViewController alloc] init];
UIViewController *playViewController = [[UIViewController alloc] init];
UIWebView *playMusicWebView = [[UIWebView alloc] initWithFrame:CGRectMake(0, 0, 1, 1)];
[playMusicWebView loadRequest:[NSURLRequest requestWithURL: [NSURL URLWithString:encodedURLString]]];
[playViewController.view addSubview: playMusicWebView];
[[self navigationController] pushViewController:playViewController animated: NO];
[playMusicWebView release];
这部电影需要永远加载。有什么方法可以为 PhoneOS 的 Internet QuickTime 播放器添加正确的插件吗?