123456789101112131415161718192021222324252627 |
- //
- // ZFSpeedLoadingView.h
- // Pods-ZFPlayer_Example
- //
- // Created by 紫枫 on 2018/6/27.
- //
- #import <UIKit/UIKit.h>
- #import "ZFLoadingView.h"
- @interface ZFSpeedLoadingView : UIView
- @property (nonatomic, strong) ZFLoadingView *loadingView;
- @property (nonatomic, strong) UILabel *speedTextLabel;
- /**
- * Starts animation of the spinner.
- */
- - (void)startAnimating;
- /**
- * Stops animation of the spinnner.
- */
- - (void)stopAnimating;
- @end
|