Reputation: 732
I haven't been able to change the height of the view. I've tried changing it's .bounds
, .frame
, and height field in the size inspector. As it is, the view has a height larger than what I've set in IB. When I go to debug the view hierarchy, the UIView's height goes beyond the wrapper views for the table view and gives me excess that I'd like to trim.
How I've added the view to the tableview. I assume this means the UIView is the now the footer of UITableView!
How far the UIView has extended the height.The blue you see at the top is the bottom edge of the last cell in the table. All the grey is excess space from the UIView.
Upvotes: 0
Views: 605
Reputation: 66302
I assume this means the UIView is the now the footer of UITableView!
Nope, this is wrong. Looks like you just added a view as a subview of your table view. You need to set your table view's tableFooterView
property.
Upvotes: 2