| New file |
| | |
| | | // |
| | | // MyCircleView.h |
| | | // MyCircleView |
| | | // |
| | | // Created by 张威 on 2020/11/20. |
| | | // Copyright © 2020 JSPY. All rights reserved. |
| | | // |
| | | |
| | | #import <UIKit/UIKit.h> |
| | | |
| | | NS_ASSUME_NONNULL_BEGIN |
| | | |
| | | @interface MyCircleView : UIView |
| | | |
| | | @end |
| | | |
| | | NS_ASSUME_NONNULL_END |
| New file |
| | |
| | | // |
| | | // MyCircleView.m |
| | | // MyCircleView |
| | | // |
| | | // Created by 张威 on 2020/11/20. |
| | | // Copyright © 2020 JSPY. All rights reserved. |
| | | // |
| | | |
| | | #import "MyCircleView.h" |
| | | |
| | | @implementation MyCircleView |
| | | |
| | | /* |
| | | // Only override drawRect: if you perform custom drawing. |
| | | // An empty implementation adversely affects performance during animation. |
| | | - (void)drawRect:(CGRect)rect { |
| | | // Drawing code |
| | | } |
| | | */ |
| | | |
| | | @end |