UIView+BYIBInspectable.h 631 B

12345678910111213141516171819202122232425262728
  1. //
  2. // UIView+BYIBInspectable.h
  3. // Prophet
  4. //
  5. // Created by Even on 17/3/27.
  6. // Copyright © 2017年 Even. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. /**
  10. 快速创建圆角,设置边框颜色等
  11. */
  12. @interface UIView (BYIBInspectable)
  13. /// 圆角
  14. @property (assign,nonatomic) IBInspectable NSInteger cornerRadius;
  15. /// 边框大小
  16. @property (assign,nonatomic) IBInspectable NSInteger borderWidth;
  17. /// 边框颜色
  18. @property (strong,nonatomic) IBInspectable UIColor *borderColor;
  19. /// 颜色
  20. @property (assign,nonatomic) IBInspectable NSString *hexRgbColor;
  21. @property (assign,nonatomic) IBInspectable BOOL onePx;
  22. @end