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

30 lines
524 B
Objective-C
Executable File

//
// GKDYVideoCell.h
// GKDYVideo
//
// Created by QuintGao on 2023/3/17.
// Copyright © 2023 QuintGao. All rights reserved.
//
#import <UIKit/UIKit.h>
#import <GKVideoScrollView/GKVideoScrollView.h>
#import "GKDYVideoModel.h"
NS_ASSUME_NONNULL_BEGIN
@interface GKDYVideoCell : GKVideoViewCell
@property (nonatomic, strong) GKDYVideoModel *model;
@property (nonatomic, strong) UIImageView *coverImgView;
- (void)initUI;
- (void)loadData:(GKDYVideoModel *)model;
- (void)resetView;
@end
NS_ASSUME_NONNULL_END