Tried below properties but didn't work like I need :
this.TableView.ContentInset this.TableView.ContentOffset
Basically, I have image header at the very top of the uitableviewcontroller , so when tableview gets populated , header image is laid over by cells ...plz look at the image
Eventually, I want to shift cells a little down to leave room for the title image.
update :
added this code and somehow worked
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);
but the image is stretched out