XLCircle.h 344 B

12345678910111213141516171819
  1. //
  2. // Circle.h
  3. // YKL
  4. //
  5. // Created by Apple on 15/12/7.
  6. // Copyright © 2015年 Apple. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface XLCircle : UIView
  10. -(instancetype)initWithFrame:(CGRect)frame lineWidth:(float)lineWidth;
  11. @property (assign,nonatomic) float progress;
  12. @property (assign,nonatomic) CGFloat lineWidth;
  13. @end