【发布时间】:2010-11-17 13:17:58
【问题描述】:
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的互联网QuickTime播放器添加正确的插件吗?
【问题讨论】:
标签: iphone plugins quicktime mpmovieplayercontroller