When I add a Navigation bar with Interface Builder to a Table View Controller it moves when the user scrolls. Is it possible to make the Navigation bar static?
With static I means that it sticks to the top of the application and when the user scrolls the cells are the only thing moving. I’ve got this working by embedding the Table View Controller in a Navigation Controller but this is not the best solution for my application because it adds other errors.
What you can do, create a plain
UIViewControllerthan in its view place theUINavigationBar.Under the
UINavigationBarplace aUITableView, now when you move the tableview the bar will stay in it’s place.