20 lines
283 B
Objective-C
20 lines
283 B
Objective-C
//
|
|
// AVLiveStreamCell.h
|
|
// AVDemo
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@class AVLiveStreamModel;
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface AVLiveStreamCell : UICollectionViewCell
|
|
|
|
/// 配置 Cell 显示内容
|
|
- (void)configureWithModel:(AVLiveStreamModel *)model;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|