cell自适应高度,在使用static cells时的一些用法

2016-05-16  本文已影响1320人  白河三

1.一般我们在使用动态cell的时候在viewdidLoad里加上这两句代码就可以了

self.tableView.rowHeight = UITableViewAutomaticDimension;
self.tableView.estimatedRowHeight = 80;

2.但是当使用静态cell的时候加上这两句代码好像并不起作用这时就要用下面的代码

3. 有时会出现这样的警告

Warning once only: Detected a case where constraints ambiguously suggest a height of zero for a tableview cell's content view. We're considering the collapse unintentional and using standard height instead.

这是因为我只写了下面这行代码

但是我总共有两个静态cell,这样写就可以了

上一篇 下一篇

猜你喜欢

热点阅读