ZFSpeedLoadingView.h 447 B

123456789101112131415161718192021222324252627
  1. //
  2. // ZFSpeedLoadingView.h
  3. // Pods-ZFPlayer_Example
  4. //
  5. // Created by 紫枫 on 2018/6/27.
  6. //
  7. #import <UIKit/UIKit.h>
  8. #import "ZFLoadingView.h"
  9. @interface ZFSpeedLoadingView : UIView
  10. @property (nonatomic, strong) ZFLoadingView *loadingView;
  11. @property (nonatomic, strong) UILabel *speedTextLabel;
  12. /**
  13. * Starts animation of the spinner.
  14. */
  15. - (void)startAnimating;
  16. /**
  17. * Stops animation of the spinnner.
  18. */
  19. - (void)stopAnimating;
  20. @end