美文网首页
iOS -xib-圆角

iOS -xib-圆角

作者: ios_暗夜行者 | 来源:发表于2023-08-14 10:26 被阅读0次

    详细步骤介绍

    点击UI控件

    点击 Xcode 右侧上方身份检查器(左起第三个按钮)

    找到 Runtime Attributes 属性,通过Key Path 和 Value 进行设置

    设置圆角需要到的Key Path:

    layer.cornerRadius ,注意该 key 对应 Value 的 type 应该设置为 String

    layer.masksToBounds ,注意该 key 对应 Value 的 type 应该设置为 Boolean , 当右侧出现对号时为YES

    注意:经过测试,UILabel 必须设置设置 masksToBounds 这一键值对,才会出现圆角效果;UIButton、UIView、UIImageView 只需设置 layer.cornerRadius 这一键值对就可实现圆角效果

     

    来源链接:https://www.jianshu.com/p/3f6a4343139e

    相关文章

      网友评论

          本文标题:iOS -xib-圆角

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