在自定义MonoTouch.Dialog元素中显示UIWebView

时间:2012-09-14 20:01:21

标签: uiwebview xamarin.ios monotouch.dialog

开发一种在Element中的自定义MonoTouch.Dialog中显示HTML和RTF内容的方法。为了开始,我基于UIViewElement实现创建了一个新类,目的是在单元格中显示UIWebViewsee UIViewElement code here)。

自定义元素有效,但永远不会显示UIWebView的内容。加载UIWebView的文本后,我会尝试使用UIWebView.SizeThatFits调整其大小。此函数始终返回0,即使给定的宽度(从显示的实际UITableViewCell开始)也不为零。

使用以下代码将UIWebView添加到UITableViewCell是否足够:

cell.ContentView.AddSubview (webView);

UIWebView永远不会返回非零高度,因此永远不会显示实际的单元格。即使我覆盖高度计算并返回静态高度(例如100f),仍然不会显示UIWebView

元素的完整代码:

public class RBHTMLRow : Element, IElementSizing
{
    public enum CellFlags {Transparent = 1,DisableSelection = 2}
    public CellFlags Flags;
    private UIWebView webView = null;
    private UITableViewCell current_cell;
    NSString key;

    private void ResizeWebView ()
    {
        if (current_cell != null)
        {
            RectangleF frame = webView.Frame;
            SizeF fittingSize = webView.SizeThatFits(new SizeF(current_cell.Frame.Width, 1f));
            frame.Size = fittingSize;
            webView.Frame = frame;
        }
    }

    private void InitWebView(bool isRTF, string content )
    {
        webView = new UIWebView();
        webView.LoadHtmlString ( content, new NSUrl(""));
        webView.LoadFinished += delegate {
            ResizeWebView();
        } ;
    }

    public RBHTMLRow (bool isRTF, String content, String caption) : base (caption)
    {
        key = new NSString("rbhtml_row");
        InitWebView(isRTF, content);
    }

    protected override NSString CellKey {
    get {
        return key;
    }
    }

    public override UITableViewCell GetCell (UITableView tv)
    {
        var cell = tv.DequeueReusableCell (CellKey);
        if (cell == null){
            cell = new UITableViewCell (UITableViewCellStyle.Default, CellKey);
            if ((Flags & CellFlags.Transparent) != 0){
                cell.BackgroundColor = UIColor.Clear;
                cell.BackgroundView = new UIView (RectangleF.Empty) { 
                    BackgroundColor = UIColor.Clear 
                } ;
            }

            cell.SelectionStyle = UITableViewCellSelectionStyle.None;
            cell.ContentView.AddSubview (webView);
        }  
        current_cell = cell;
        ResizeWebView();
        return cell;
    }

public float GetHeight (UITableView tableView, NSIndexPath indexPath){
    return webView.Bounds.Height;
}

0 个答案:

没有答案