Reputation:
How could i get a toolbar with tableview to get buttons on that?
Upvotes: 1
Views: 1106
Reputation: 33048
I solved this in my apps by adding a toolbar to a UIView and then add the table view to the UIView, too. This fixes the toolbar on top and allows the table to scroll. UITableView itself does not allow adding subviews.
See also here: UISplitViewController: how to get toolbar if details controller is UITableView?
Upvotes: 1