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プレーヤー用の正しいプラグインを追加する方法はありますか?