I have a UITableViewController and I want to add a fixed single button to the bottom of the screen.
I don’t want it to scroll with the rest of the table. I know that I need the button and the tableview to be at the same level but I have no idea how to do so with a TableViewController.
Is there an easier way?
You don’t really explain why a toolbar isn’t an option, but that would be the easiest way to do this. You could also do this by making your view controller not inherit from
UITableViewController, but fromUIViewController. Then you add a table view that takes up the entire screen, minus a little area at the bottom where you can then put your button.