美文网首页
Xcode11 iOS13 踩坑记

Xcode11 iOS13 踩坑记

作者: 本雍正专治bug | 来源:发表于2019-09-25 19:29 被阅读0次

    Xcode 11版本

    1.tableView在UITableViewStyleGrouped类型下,contentView高度多出20像素

    解决方案:
    tableView.estimatedRowHeight = 0.001f;
    tableView.estimatedSectionFooterHeight = 0.001f;
    tableView.estimatedSectionHeaderHeight = 0.001f;
    

    注:不能是0,否则无效

    2.Xib或storyboard拉线

    image.png

    相关文章

      网友评论

          本文标题:Xcode11 iOS13 踩坑记

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