28 lines
447 B
Objective-C
28 lines
447 B
Objective-C
//
|
|
// 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
|