// // YOUPAILZLiveItemCell.h // TIANYAN // // Created by CY on 2021/5/19. // Copyright © 2021 leo. All rights reserved. // #import #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