17 lines
282 B
Objective-C
17 lines
282 B
Objective-C
//
|
|
// HBCollectionViewCell.h
|
|
// QinJiuTV
|
|
//
|
|
// Created by HI_LOSER on 2024/5/15.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface HBCollectionViewCell : UICollectionViewCell
|
|
@property (weak, nonatomic) UIViewController * controller;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|