| 12345678910111213141516171819 |
- //
- // Circle.h
- // YKL
- //
- // Created by Apple on 15/12/7.
- // Copyright © 2015年 Apple. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface XLCircle : UIView
- -(instancetype)initWithFrame:(CGRect)frame lineWidth:(float)lineWidth;
- @property (assign,nonatomic) float progress;
- @property (assign,nonatomic) CGFloat lineWidth;
- @end
|