SB结合代码圆角

Posted

tags:

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

//UIView+CornerRadius.h
@interface UIView (CornerRadius)
 
@property (nonatomic, assign) IBInspectable CGFloat cornerRadius;
 
@end

 

 

//UIView+CornerRadius.m
@implementation UIView (CornerRadius)
 
- (void)setCornerRadius:(CGFloat)cornerRadius
{
    self.layer.cornerRadius = cornerRadius;
    self.layer.masksToBounds = cornerRadius > 0;
}
 
- (CGFloat)cornerRadius
{
    return self.layer.cornerRadius;
}
@en
   

以上是关于SB结合代码圆角的主要内容,如果未能解决你的问题,请参考以下文章

UIView有圆角和投影?

带有圆角而不是 100% 屏幕宽度的自定义片段对话框

RadioGroup结合RadioButton使用切换Fragment片段

如何在 Core Graphics / Quartz 2D 中绘制圆角矩形?

炫酷 CSS 背景效果的 10 个代码片段

将 Dash 与 Alfred 结合起来