UITableView,cell使用autolayout,contentSize不准确的问题

UITableView,cell使用autolayout,contentSize不准确的问题

当使用autolayout让cell自动算高时,会设置

table.estimatedRowHeight = 100;
table.rowHeight = UITableViewAutomaticDimension;

这时候获取contenSize 得到是以estimatedRowHeight 为cell高度算出来的,很明显是不准确的。

而且有时候就算在layoutsubviews 方法里也得不到正确的contentSize

如何解决:

  1. 先调用reloadData
  2. 再用GCD回到主线程
  3. 在主线程里加入UIView动画,调layoutIfNeeded
    在主线程block里即可得到正确的contentSize
    代码如下:
[_tableView reloadData];
    dispatch_async(dispatch_get_main_queue(), ^{
        ///
        ///do something,此时可得到正确的contentSize
        [UIView animateWithDuration:0 animations:^{
            [self layoutIfNeeded];
        }];
    });

原理未知。

你可能感兴趣的:(iOS技术总结)