| 123456789101112131415 |
- //
- // CircleView.h
- // YKL
- //
- // Created by Apple on 15/12/7.
- // Copyright © 2015年 Apple. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface XLCircleProgress : UIView
- //百分比
- @property (assign,nonatomic) float progress;
- @property (strong,nonatomic) UILabel *percentLabel;
- @end
|