Reputation: 45
I'm new to swift, therefore a very basic question without acutal code yet.
what I tried so far:
embed a toolbar into a UITableViewController => toolbar sticks with the static table
embed a UITableView into a UIViewController => unable to add a static table, but the toolbar shows at the bottom of the display
Is there any way to create a static table with a seperated toolbar?
Thanks a lot!
Upvotes: 1
Views: 206
Reputation: 3025
Try using a UINavigationController
:
UINavigationController
into the storyboardUITableViewController
as needed.Upvotes: 4