尝试了以下属性,但没有像我需要的那样工作:
this.TableView.ContentInset this.TableView.ContentOffset
基本上,我在 uitableviewcontroller 的最顶部有图像标题,所以当 tableview 被填充时,标题图像被单元格覆盖......请看图像
最后,我想将单元格向下移动一点,以便为标题图像留出空间。
更新 :
添加了这段代码并以某种方式工作
UIImageView img = new UIImageView (new RectangleF ((this.View.Bounds.Width- 164)/2,0, 164, 44));
img.Image = UIImage.FromFile ("Images/app-name.png");
this.TableView.TableHeaderView(img);
但是图像被拉长了