iOSxib 显示圆角

Posted hfel

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iOSxib 显示圆角相关的知识,希望对你有一定的参考价值。

 

给UIView增加类别

.h

@property(nonatomic,assign) IBInspectable CGFloat cornerRadius;

 .m

 - (void)setCornerRadius:(CGFloat)cornerRadius

 {   self.layer.cornerRadius= cornerRadius;

  self.layer.masksToBounds= cornerRadius >0;

}

 - (CGFloat)cornerRadius

 {  return self.layer.cornerRadius;  }

就可以在xib中看到了

以上是关于iOSxib 显示圆角的主要内容,如果未能解决你的问题,请参考以下文章

Tableview圆角未显示在底部

如何使用css让图片显示圆角

ios xib和代码的frame布局 iOSXib布局后代码修改约束的值

UIview 的快照不显示圆弧和圆角

Imageview不显示圆角

在Android中将半图像切成方形显示圆角