I have a UITableViewController. In viewDidLoad I set the rowHeight:
self.tableView.rowHeight = 43;
But then in cellForRowAtIndexPath, I check the height of the cell:
NSLog(@"bounds: w = %f, h = %f", cell.bounds.size.width, cell.bounds.size.height);
This prints a height of 44 and a width of 320. Anyone know why it would print a height of 44 instead of 43?
Thanks!