使用IBInspectable在xib中快速可视化设置View的圆角边界等属性

IBInspectable 修饰属性,可以自定义的运行时属性,支持KVC的属性能够在Attribute Inspector中配置

@dynamic 是告诉编译器,属性的setter与getter方法由用户自己实现,不自动生成。

1.创建一个UIView的分类,名字根据自己的习惯命名就可以

2.在.h文件中添加自己想在xib的改变的属性,例如:

@interface UIView (LZRViewLayer)
@property (nonatomic) IBInspectable UIColor *borderColor;
@property (nonatomic) IBInspectable CGFloat borderWidth;
@property (nonatomic) IBInspectable CGFloat cornerRadius;
@end

 

3.在.m文件中写set方法,赋值给UIView 的layer相对应的属性

#import "UIView+LZRViewLayer.h"

@implementation UIView (LZRViewLayer)

@dynamic borderColor,borderWidth,cornerRadius;

-(void)setBorderColor:(UIColor *)borderColor
{
    [self.layer setBorderColor:borderColor.CGColor];
}

-(void)setBorderWidth:(CGFloat)borderWidth
{
    [self.layer setBorderWidth:borderWidth];
}

-(void)setCornerRadius:(CGFloat)cornerRadius
{
    [self.layer setCornerRadius:cornerRadius];
//    self.clipsToBounds = YES;
}
@end

github代码:https://github.com/liuZhengR/RoundedCorners

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值