JXHotRecommendView.h 591 B

123456789101112131415161718192021222324252627282930313233343536
  1. //
  2. // JXHotRecommendView.h
  3. // AICity
  4. //
  5. // 热门推荐组件
  6. // 功能:横向滚动列表,显示热门影片和短剧
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "JXHomeHeaderData.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface JXHotRecommendView : UIView
  12. /**
  13. * 推荐数据源(影片 + 短剧)
  14. */
  15. @property (nonatomic, strong, nullable) NSArray<JXBannerItem *> *items;
  16. /**
  17. * 点击回调
  18. */
  19. @property (nonatomic, copy, nullable) void (^onItemClick)(JXBannerItem *item);
  20. /**
  21. * 更新推荐数据
  22. */
  23. - (void)updateItems:(NSArray<JXBannerItem *> *)items;
  24. @end
  25. NS_ASSUME_NONNULL_END