CustomBorderView.h 304 B

123456789101112131415161718
  1. //
  2. // CustomBorderView.h
  3. // IBOSS-HJ
  4. //
  5. // Created by 关宏厚 on 2021/1/5.
  6. // Copyright © 2021 elongtian. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface CustomBorderView : UIView
  10. -(void) drawBoardLine:(double)width cornerRadius:(double)cornerRadius color:(UIColor*)color;
  11. @end