Esempio n. 1
0
            public void ReloadUI(WebViewWithCodeRow row, UITableView tableView)
            {
                if (!_loaded)
                {
                    if (row.Html != null)
                    {
                        _webView.LoadHtmlString(GetPrettifyHtml(row.Html), NSBundle.MainBundle.ResourceUrl);
                    }

                    _loaded = true;
                }

                _webView.Frame = new RectangleF(0, 0, tableView.Frame.Width, height);
            }
Esempio n. 2
0
            public void ReloadUI(WebViewWithCodeRow row, UITableView tableView)
            {
                if (!_loaded)
                {
                    if (row.Html != null)
                        _webView.LoadHtmlString(GetPrettifyHtml(row.Html), NSBundle.MainBundle.ResourceUrl);

                    _loaded = true;
                }

                _webView.Frame = new RectangleF(0, 0, tableView.Frame.Width, height);
            }