12345678910111213141516171819202122232425262728 |
- //
- // YOUPAILZLiveItemCell.h
- // TIANYAN
- //
- // Created by CY on 2021/5/19.
- // Copyright © 2021 leo. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "YOUPAILZLiveListItemModel.h"
- #import "YYImage.h"
- typedef NS_ENUM(NSUInteger,LZLiveItemCellStyle) {
- LZLiveItemCellStyleWithDefault = 0, // 默认
- LZLiveItemCellStyleWithRanking = 1, // 排名
- };
- NS_ASSUME_NONNULL_BEGIN
- @interface YOUPAILZLiveItemCell : UICollectionViewCell
- @property (nonatomic, strong) YYImage *youpaipanimationImage;
- - (void)youpaifreloadWithModel:(YOUPAILZLiveListItemModel *)model style:(LZLiveItemCellStyle)style index:(NSInteger)index;
- @end
- NS_ASSUME_NONNULL_END
|