I am trying to build a screen like this:

I’ve already built the navigationItem (the “title Bar”) and the table view, now I’m looking for a way to add the buttons under the table view.
The result should look similar to a tab bar, but as the buttons are used to influence the the number of displayed records in the table, I’m only dealing with one controller.
How do I achieve what I’m looking for?
I can think of two ways off the top of my head you could accomplish something like this.
UISegmentedControland place it in your tableview’stableFooterViewproperty. The buttons would only be visible underneath the tableview and would scroll with the table.UIToolbar, or ideally display the toolbar you get for free with the navigation controller, and place aUISegmentedControlthere. This way the buttons would always be visible regardless of where the user has scrolled to.Hope this gets you started.