Hibit_iOS/HiBit/Project/Player/View/GKDYVideoStatusBar.h
2024-06-11 10:51:38 +08:00

28 lines
452 B
Objective-C
Executable File
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// GKDYVideoStatusBar.h
// GKDYVideo
//
// Created by QuintGao on 2023/3/22.
// Copyright © 2023 QuintGao. All rights reserved.
//
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
@interface GKDYVideoStatusBar : UIView
// 刷新时间默认3s
@property (nonatomic, assign) NSTimeInterval refreshTime;
// 网络状态
@property (nonatomic, copy) NSString *network;
- (void)startTimer;
- (void)destoryTimer;
@end
NS_ASSUME_NONNULL_END