在Xamarin(Ios)中找不到heightForFooterInSection方法

时间:2016-09-24 08:47:21

标签: ios xamarin tableview cell

我在Xamarin工作TableView。我想在两个单元格之间添加空格。所以我知道一个技巧是创建部分并在其上添加一个单元格。并在实现heightForFooterInSection方法之后在两个单元格之间添加空格。

NumberOfRowsInSection工作正常但我找不到heightForFooterInSection这是我TableView的空间。

有没有其他选择或者是否有其他方法可以做同样的事情。

任何帮助都要得到赞赏。

1 个答案:

答案 0 :(得分:0)

花了2个小时后,我找到了答案。

我必须在“TableCell

中添加以下代码
 public override CGRect Frame
        {
            get
            {
                return base.Frame;
            }

            set
            {
                value.Y += 4;
                value.Height -= 2 * 4;
                base.Frame = value;
            }
        }

它将在两个单元格之间添加空格。