I am using a UITableViewController
, and what I would like to do is to add a custom toolbar under the UIView
.
I have tried enabling the toolbar
Instead of subclassing UITableViewController
for your implementation, you might find it easier to subclass a plain UIViewController
and add a UITableView
to it. This would give you more flexibility in terms of customizing the layout.
Basically the steps would be:
This way you can add the inputField and button to your viewController's view (at the bottom) and they won't scroll because they are separate from the tableview.