首页 > 学院 > 开发设计 > 正文

UITableViewCell自适应高度

2019-11-09 18:28:14
字体:
来源:转载
供稿:网友

1.常见问题,

a.UILabel的高度自适应,

b.TableViewCell高度的自适应。

2.解决方案:UILabel高度的自适应, 首先是设定好label的约束。

UILabel属性设置:

主要代码包括2段:2个缺一不可

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{    return UITableViewAutomaticDimension;}- (CGFloat)tableView:(UITableView *)tableView estimatedHeightForRowAtIndexPath:(NSIndexPath *)indexPath{        return 170;    }


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表