This breaking my head because I can’t seem to find a way to do it. I want to put a UIToolbar directly on top of a UITabBar, but whenever I drag the component, it goes and gets added below a UITableViewCell.
This is what happens:

The toolbar should be below, on top of the tab bar, not below the UITableViewCell. These cells are dynamic, not static (if it matters).
Any help will be really appreciated!
EDIT: I just figured it’s adding the toolbar as a cell rather than as another component. I can’t seem to add the toolbar outside the table though. Uuuhhgh.
Start by creating a ViewController, not a TableViewController.
Drag out the TableView into the ViewController and resize it accordingly, then add the UIToolBar below it.
Hope it works.