1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| //
| // 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
|
|