I am trying to create a uitableviewcontroller as a modal viewcontroller to edit some parameters. I am creating a tableviewcontroller in code, and currently I am struggling with how to correctly add the navigation bar to the controller, which will have the "Finish" button, which:
a) does not appear on top of the table; and b) does not scroll with the table view ??
This happens when I add navbar to the contoller with: [self.view addSubview: navigationBar]; Does this add a navigator to the controller, which comes out from above and shades the tables with the first row, as well as scrolls with a view?
I also thought about just using a uiviewcontroller with a separate table view, but I like the automatic scrolling functionality of tableview when editing a text field that the tableviewcontroller editor gives you. I just canβt understand how to configure this navigator?
THX
source
share