This commit is contained in:
DDIsFriend
2023-08-28 18:29:21 +08:00
parent c73a6ff1d4
commit 8d563860f1
290 changed files with 9542 additions and 9626 deletions
@@ -0,0 +1,27 @@
//
// 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