RKCircularProgress.h 407 B

1234567891011121314151617181920212223
  1. //
  2. // RKCircularProgress.h
  3. // TestApp
  4. //
  5. // Created by YB007 on 2020/7/7.
  6. // Copyright © 2020 Rookie. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface RKCircularProgress : UIView
  10. @property (nonatomic, assign) CGFloat progress;
  11. @property(nonatomic,strong)UIImage *proImg;
  12. - (void)setCenterProgressText:(NSString *)text withAttributes:(NSDictionary *)attributes;
  13. - (void)dismiss;
  14. @end