在 GetHeightForRow 中計算變數行高

計算行高可能很昂貴,如果你有大量資料,滾動效能可能會受到影響。在該場景中,覆蓋 UITableViewSource.EstimatedHeight(UITableView, NSIndexPath) 以快速提供足以快速滾動的數字,例如:

public override nfloat EstimatedHeight(UITableView tableView, NSIndexPath indexPath) 
{ 
    return 44.0f; 
}