| 1234567891011121314151617181920212223 |
- //
- // RKCircularProgress.h
- // TestApp
- //
- // Created by YB007 on 2020/7/7.
- // Copyright © 2020 Rookie. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface RKCircularProgress : UIView
- @property (nonatomic, assign) CGFloat progress;
- @property(nonatomic,strong)UIImage *proImg;
- - (void)setCenterProgressText:(NSString *)text withAttributes:(NSDictionary *)attributes;
- - (void)dismiss;
- @end
|