public override void Draw(CoreGraphics.CGRect bounds, CoreGraphics.CGContext context, UIKit.UIView view) { UIColor.White.SetFill (); context.FillRect (bounds); if (this.cell == null) { this.cell = new CheckPointTableCell (); view.AddSubview (cell); } cell.RenderCheckpointForDetail(this.data); view.LayoutIfNeeded (); }