0

正在研究一种ElementMonoTouch.Dialog. 首先,我基于UIViewElement实现创建了一个新类,目的是UIWebView在单元格中显示 a(请参阅此处的 UIViewElement 代码)。

自定义元素有效,但从UIWebView不显示内容。加载文本后UIWebView,我尝试使用UIWebView.SizeThatFits. 这个函数总是返回 0,即使给它的宽度(根据实际UITableViewCell显示的宽度)是非零的。

是否足以添加UIWebViewUITableViewCell使用此代码:

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;
}
4

0 回答 0