在方式合作,在自定义显示HTML和RTF内容Element
在MonoTouch.Dialog
。 要开始,我创建基础上,一个新的类UIViewElement
执行情况,显示的意图UIWebView
在细胞( 见UIViewElement代码在这里 )。
自定义元素的作品,但是内容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;
}