Sup fellas, so I have a navigation controller with a table view to which I am trying to add a toolbar, however, the way I implemented it causes the last row in the table to hide behind the toolbar. I will try to illustrate the images:
The table view scrolls from the bottom without a toolbar:

The table view scrolls to the bottom of the toolbar (note how the last line of the "Provider" is hidden behind the toolbar):

I followed this , and this is what I did for my implementation:

As you can see, I have a βViewβ instead of a βWindowβ for work. Here is the code to display the toolbar:
- (void)viewDidLoad {
[super viewDidLoad];
[self.view addSubview:self.navigationController.view];
[self.view addSubview:toolbar];
[self.navigationController.view setFrame:self.view.frame];
}
, , . . ? !