美文网首页
iOS Storyboard&Xib 踩坑集合

iOS Storyboard&Xib 踩坑集合

作者: iOS阿能 | 来源:发表于2018-11-14 16:32 被阅读0次

    大纲 (根据大纲搜索问题)

    • 一. tableview & collectionView
      ** 1.1重用机制导致圆角绘制不到位

    1.1重用机制导致圆角绘制不到位


    image.png
        // 设置圆角
        [_lblCategory setCornerRadius:11.0 atRectCorner:UIRectCornerTopRight | UIRectCornerBottomLeft |UIRectCornerBottomRight];
     
    
    

    坑点1:在awakeFromNib调用这段代码,失效.
    坑点2:在setModel的地方调用这段代码如以下效果图,太快可能看不清,有概率的绘制失败(原因是设置圆角是异步执行,可能label的layout还没更新完成,就设置好了圆角)

    image.png
    重用.gif

    相关文章

      网友评论

          本文标题:iOS Storyboard&Xib 踩坑集合

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