| 12345678910111213141516171819202122232425 |
- //
- // videoItemsCell.h
- // AICity
- //
- // Created by 张国栋 on 2025/10/21.
- // Copyright © 2025 wei.z. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "EXTView.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface videoItemsCell : UICollectionViewCell
- @property (weak, nonatomic) IBOutlet EXTView *viewVIP;
- @property (weak, nonatomic) IBOutlet EXTButton *btnVIP;
- @property (copy, nonatomic) void (^vipClicked)(void);
- @property (copy, nonatomic) void (^playClicked)(void);
- @property (weak, nonatomic) IBOutlet UILabel *labelT;
- @property (weak, nonatomic) IBOutlet UILabel *labelTime;
- @property (weak, nonatomic) IBOutlet UILabel *labelView;
- @property (weak, nonatomic) IBOutlet EXTImageView *imgH;
- @end
- NS_ASSUME_NONNULL_END
|