How iOS UITableView under NavigationBar?

ios, iphone, objective-c, uitableview, xamarin.ios

Solution

I solved task with this simple code:

table.ScrollIndicatorInsets = new UIEdgeInsets(64, 0, 0, 0);

Problem

I have set ``` NavigationController.NavigationBar.Translucent = true; ``` Then add table and set frame to RootView Frame, and: ``` public override void ViewDidLayoutSubviews() { base.ViewDidLayoutSubviews(); float y = this.TopLayoutGuide.Length; table.ContentInset = new UIEdgeInsets (y, 0, 0, 0); } ``` But, I Have table Scroll Bar under NavigationBar (I use monotouch):

Original source

Related problems