I've tried changing the tableview's frame to be above the top of the toolbar with no luck. I've used interface builder and I've done it problematically with the below code. My toolbar is still on top of my tableview when the tableview is expanded past one full screen height. What am I doing wrong?
Code:
self.tableView.frame = CGRectMake(0, 0, 320, 200);
I forgot to mention, my tableview is dynamic and will not be a set size (size will change).