美文网首页iOS tableview
iOS 解决tableview contensize 预估值不准

iOS 解决tableview contensize 预估值不准

作者: L安安 | 来源:发表于2019-06-13 11:07 被阅读0次

    iOS 解决tableview contensize 预估值不准

    开发中,遇到一个问题,要在tableview列表上加水印。所以我就使用了tableview.contentsize.height作为水印的高度,结果滑动时发现了水印的高度渲染的不对,接下来就打印了tableview.contentsize.height的值,原来是预估的,随着滑动会发生变化。关闭预估值,只需设置:
    tableView.estimatedRowHeight = 0;
    tableView.estimatedSectionHeaderHeight = 0;
    tableView.estimatedSectionFooterHeight = 0;

    In iOS 11, table views use estimated heights by default. This means that the contentSize is just as estimated value initially. If you need to use the contentSize, you’ll want to disable estimated heights by setting the 3 estimated height properties to zero:

    tableView.estimatedRowHeight = 0;

    tableView.estimatedSectionHeaderHeight = 0;

    tableView.estimatedSectionFooterHeight = 0;

    相关文章

      网友评论

        本文标题:iOS 解决tableview contensize 预估值不准

        本文链接:https://www.haomeiwen.com/subject/tfivbttx.html