PBUserHomePageRecommendView.h 671 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // PBUserHomePageRecommendView.h
  3. // PBSDK
  4. //
  5. // Created by LStar on 2025/1/26.
  6. //
  7. #import <UIKit/UIKit.h>
  8. #import <JXCategoryView/JXCategoryListContainerView.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @class PBUserHomePageModel;
  11. @interface PBUserHomePageRecommendView : UIView<JXCategoryListContentViewDelegate>
  12. @property (nonatomic,strong) UITableView *tableView;
  13. @property (nonatomic,strong)NSString *memberId;
  14. ///下标是多少
  15. @property (nonatomic,assign)NSInteger index;
  16. @property (nonatomic,assign)BOOL tableCanScroll;
  17. ///子view的滚动事件
  18. @property (nonatomic,copy) void (^scrollViewDidScroll)(PBUserHomePageRecommendView *aView);
  19. @end
  20. NS_ASSUME_NONNULL_END