码迷,mamicode.com
首页 > 移动开发 > 详细

iOSxib 显示圆角

时间:2018-09-28 19:07:22      阅读:150      评论:0      收藏:0      [点我收藏+]

标签:layer   tab   float   return   tom   增加   view   table   oid   

 

给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 显示圆角

标签:layer   tab   float   return   tom   增加   view   table   oid   

原文地址:https://www.cnblogs.com/HFEL/p/9719927.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!