YOUPAILZLiveItemCell.h 662 B

12345678910111213141516171819202122232425262728
  1. //
  2. // YOUPAILZLiveItemCell.h
  3. // TIANYAN
  4. //
  5. // Created by CY on 2021/5/19.
  6. // Copyright © 2021 leo. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "YOUPAILZLiveListItemModel.h"
  10. #import "YYImage.h"
  11. typedef NS_ENUM(NSUInteger,LZLiveItemCellStyle) {
  12. LZLiveItemCellStyleWithDefault = 0, // 默认
  13. LZLiveItemCellStyleWithRanking = 1, // 排名
  14. };
  15. NS_ASSUME_NONNULL_BEGIN
  16. @interface YOUPAILZLiveItemCell : UICollectionViewCell
  17. @property (nonatomic, strong) YYImage *youpaipanimationImage;
  18. - (void)youpaifreloadWithModel:(YOUPAILZLiveListItemModel *)model style:(LZLiveItemCellStyle)style index:(NSInteger)index;
  19. @end
  20. NS_ASSUME_NONNULL_END