What is the default height of UITableViewCell?

前端 未结 8 1421
猫巷女王i
猫巷女王i 2020-12-12 12:21

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.

8条回答
  •  [愿得一人]
    2020-12-12 12:39

    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.

提交回复
热议问题