在 GetHeightForRow 中计算变量行高
计算行高可能很昂贵,如果你有大量数据,滚动性能可能会受到影响。在该场景中,覆盖 UITableViewSource.EstimatedHeight(UITableView, NSIndexPath)
以快速提供足以快速滚动的数字,例如:
public override nfloat EstimatedHeight(UITableView tableView, NSIndexPath indexPath)
{
return 44.0f;
}