I have a number of views that use UITableView. (I use UIViewController and implement UITableViewDelegate and UITableViewDataSource interfaces.) I’m having trouble creating a tableview that leaves room at the top for a toolbar. How to I size and layout the Tableview so that it is less than full screen? Is this an AutoResizing mask problem?
Thanks,
Gerry
You need to modify the table view frame to size for the toolbar. For example, you would run something like the following:
This calculates the coordinates and size minus the toolbar at the top and then sets the frame of the tableview to those coordinates.