开发一种在Element
中的自定义MonoTouch.Dialog
中显示HTML和RTF内容的方法。为了开始,我基于UIViewElement
实现创建了一个新类,目的是在单元格中显示UIWebView
(see 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;
}