JYRefreshIndicator.h 425 B

123456789101112131415161718192021222324
  1. //
  2. // JYRefreshIndicator.h
  3. // JYRefreshController
  4. //
  5. // Created by Alvin on 14-6-16.
  6. //
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface JYRefreshIndicator : UIView
  10. @property (nonatomic, strong) UIColor *color;
  11. @property (nonatomic, assign) BOOL hidesWhenStopped;
  12. - (instancetype)initWithColor:(UIColor*)color;
  13. - (void)startAnimating;
  14. - (void)stopAnimating;
  15. - (BOOL)isAnimating;
  16. - (void)setPercentage:(CGFloat)percentage;
  17. @end