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