XLCircleProgress.h 297 B

123456789101112131415
  1. //
  2. // CircleView.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 XLCircleProgress : UIView
  10. //百分比
  11. @property (assign,nonatomic) float progress;
  12. @property (strong,nonatomic) UILabel *percentLabel;
  13. @end