12345678910111213141516171819202122232425262728 |
- //
- // UIView+BYIBInspectable.h
- // Prophet
- //
- // Created by Even on 17/3/27.
- // Copyright © 2017年 Even. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- /**
- 快速创建圆角,设置边框颜色等
- */
- @interface UIView (BYIBInspectable)
- /// 圆角
- @property (assign,nonatomic) IBInspectable NSInteger cornerRadius;
- /// 边框大小
- @property (assign,nonatomic) IBInspectable NSInteger borderWidth;
- /// 边框颜色
- @property (strong,nonatomic) IBInspectable UIColor *borderColor;
- /// 颜色
- @property (assign,nonatomic) IBInspectable NSString *hexRgbColor;
- @property (assign,nonatomic) IBInspectable BOOL onePx;
- @end
|