仅在iPhone中播放YouTube视频应用程序 - 失去控制权

时间:2013-07-16 15:59:45

标签: uiwebview youtube xamarin.ios xamarin

下面的代码用于在View上放置一个小的WebView,以便用户可以点击它,视频以全屏模式打开并播放。一切正常,但在播放4秒后,控件会消失,不会再出现(轻敲,旋转......)。视频播放完毕后,控件重新出现,“完成”按钮变为可用。但是,一旦处理了WebView并加载了新视图,该新视图最多可在6分钟内无响应。

[Preserve (AllMembers=true)]
public class YouTubeViewer :  UIWebView
{
    public static AppDelegate appDelegate = (AppDelegate) UIApplication.SharedApplication.Delegate;

    public YouTubeViewer(string url, RectangleF frame)
    {
        Log.WriteLog("loading YouTubeView");
        appDelegate.firstViewing = true;
        this.UserInteractionEnabled = true;
        this.BackgroundColor = UIColor.Clear;
        this.Frame = frame;
        string youTubeVideoHTML = @"<object width=""{1}"" height=""{2}""><param name=""movie""
                            value=""{0}""></param><embed
                            src=""{0}"" type=""application/x-shockwave-flash"" 
                            width=""{1}"" height=""{2}""</embed></object>"; 

        string html = string.Format(youTubeVideoHTML, url, frame.Size.Width, frame.Size.Height);
        this.LoadHtmlString(html, null);

    }
}

以下是WebView的处理方式:

public void RemoveWebView(UIWebView inView)
    {
        try
        {
            Log.WriteLog("RemoveWebView");
            NSUrlCache.SharedCache.RemoveAllCachedResponses();
            NSUrlCache.SharedCache.DiskCapacity = 0;
            NSUrlCache.SharedCache.MemoryCapacity = 0;

            inView.LoadHtmlString("",null);
            inView.EvaluateJavascript("var body=document.getElementsByTagName('body')[0];body.style.backgroundColor=(body.style.backgroundColor=='')?'white':'';");
            inView.EvaluateJavascript("document.open();document.close()");
            inView.StopLoading();
            inView.Delegate = null;
            inView.RemoveFromSuperview();
            inView.Dispose();
        }
        catch(Exception ex)
        {
            Log.LogError("RemoveWebView",ex);
        }
    }

谢谢, 瑞克

2 个答案:

答案 0 :(得分:0)

我与Xamarin谈过,他们建议在AppDelegate中删除方向管理的覆盖。

public override UIInterfaceOrientationMask GetSupportedInterfaceOrientations(UIApplication application, UIWindow forWindow)
    {  /*... code ...*/  }

删除此覆盖后,我的应用程序在加载YouTube视频时按预期工作。 这解决了我的问题。您仍然可以通过单个ViewController覆盖控制支持的方向,并通过Info.plist文件全局控制。

答案 1 :(得分:0)

https://github.com/nishanil/YouTubePlayeriOS 希望这个样本可以帮助你。它对我有用。