0

MPMediaPickerController 工作正常,但在 webview 中播放 youtube 视频后
[self presentModalViewController:pickerController animated:YES];
不显示 MPMediaPickerController
im 使用此代码播放 youtube 视频

 - (void)embedYouTube:(NSString*)url frame:(CGRect)frame {  
      NSString* embedHTML = @"\ 
      <html><head>\ 
      <style type=\"text/css\">\ 
      body {\ 
          background-color: transparent;\ 
      color: white;\ 
      }\ 
      </style>\ 
      </head><body style=\"margin:0\">\ 
      <embed id=\"yt\" src=\"%@\" type=\"application/x-shockwave-flash\" \ 
      width=\"%0.0f\" height=\"%0.0f\"></embed>\ 
      </body></html>";  
      NSString* html = [NSString stringWithFormat:embedHTML, url, frame.size.width,    frame.size.height];  
      demoWebView.hidden = NO;
      [demoWebView loadHTMLString:html baseURL:nil]; } 
4

1 回答 1

0

我正在使用 presentModalViewController 和正在播放 YouTube 视频的 UIWebView,现在正在使用导航控制器,一切正常。

于 2012-06-04T10:01:11.983 回答