I thought this information would have been easier to find :-)
What is the default height of a UITableViewCell? It looks like 44 pixels, but I\'d prefer to be sure.>
If you want the default dimension on any device you can use: UITableViewAutomaticDimension
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
return UITableViewAutomaticDimension;
}
Although 44 pixels is currently the default this is a useful method if your app relies on having the default value set.