基础iOSiOS高阶

xib可视化--- IB_DESIGNABLE,IBInspec

2018-06-27  本文已影响139人  MrBMask

关于xib在我们的项目中用到很多,作为快速搭建页面的基本功,却忽略了一些重要的属性,接下来就简单介绍一下xib的黑科技和在项目中的实际应用。有点东西的,我来做个笔记。

IB_DESIGNABLE 作用
#import <UIKit/UIKit.h>

IB_DESIGNABLE    //让你的自定 UIView 可以在 IB 中预览
@interface CircleView : UIView
@property (nonatomic, assign) CGFloat lineWidth; // 线宽
@property (nonatomic, assign) CGFloat radius; // 圆的半径
@property (nonatomic, strong) UIColor *color; // 颜色
@property (nonatomic, assign) BOOL fill; // 是否填充

@end
- (void)drawRect:(CGRect)rect {

    
    // 计算中心点
    CGFloat centerX = (self.bounds.size.width - self.bounds.origin.x) / 2;
    CGFloat centerY = (self.bounds.size.height - self.bounds.origin.y) / 2;
    
    UIBezierPath *path = [[UIBezierPath alloc] init];
    // 添加一个圆形
    [path addArcWithCenter:CGPointMake(centerX, centerY) radius:_radius startAngle:0 endAngle:360 clockwise:YES];
    
    // 设置线条宽度
    path.lineWidth = _lineWidth;
    
    // 设置线条颜色
    [_color setStroke];
    // 绘制线条
    [path stroke];
    
    if (_fill) {
        // 如果是实心圆,设置填充颜色
        [_color setFill];
        // 填充圆形
        [path fill];
    }
}
声明IB_DESIGNABLE.png
IBInspectable 作用
@property (nonatomic, assign)IBInspectable CGFloat lineWidth; // 线宽
@property (nonatomic, assign)IBInspectable CGFloat radius; // 圆的半径
@property (nonatomic, strong)IBInspectable UIColor *color; // 颜色
@property (nonatomic, assign)IBInspectable BOOL fill; // 是否填充
image.png

接下来我们可以封装一个类,专门用来设置我们xib视图中的圆角,边框等属性,倒入pch,大大加快我们的效率。

#import <UIKit/UIKit.h>

@interface UIView (nibExt)
//仅仅用于设置ib  非正常属性
@property(nonatomic,assign)IBInspectable CGFloat layerBoderWidth;
@property(nonatomic,assign)IBInspectable CGFloat layerBoderCorner;
@property(nonatomic,strong)IBInspectable UIColor * boderColor;
@end
#import "UIView+nibExt.h"

@implementation UIView (nibExt)
-(void)setLayerBoderWidth:(CGFloat)layerBoderWidth{
    self.layer.borderWidth = layerBoderWidth;
}
-(CGFloat)layerBoderWidth{
    return self.layer.borderWidth;
}

-(void)setLayerBoderCorner:(CGFloat)layerBoderCorner{
    self.layer.cornerRadius = layerBoderCorner;
}
-(CGFloat)layerBoderCorner{
    return self.layer.cornerRadius;
}

- (void)setBoderColor:(UIColor *)boderColor{
    self.layer.borderColor = boderColor.CGColor;
}

- (UIColor *)boderColor{
    return [UIColor colorWithCGColor:self.layer.borderColor];
}

@end
效果图最终

至此,大功告成,美滋滋~~~

最后附上代码链接:
gibHub地址:https://github.com/MrBMask

上一篇下一篇

猜你喜欢

热点阅读