123456789101112131415161718192021222324252627282930 |
- //
- // PBUserHomePageRecommendView.h
- // PBSDK
- //
- // Created by LStar on 2025/1/26.
- //
- #import <UIKit/UIKit.h>
- #import <JXCategoryView/JXCategoryListContainerView.h>
- NS_ASSUME_NONNULL_BEGIN
- @class PBUserHomePageModel;
- @interface PBUserHomePageRecommendView : UIView<JXCategoryListContentViewDelegate>
- @property (nonatomic,strong) UITableView *tableView;
- @property (nonatomic,strong)NSString *memberId;
- ///下标是多少
- @property (nonatomic,assign)NSInteger index;
- @property (nonatomic,assign)BOOL tableCanScroll;
- ///子view的滚动事件
- @property (nonatomic,copy) void (^scrollViewDidScroll)(PBUserHomePageRecommendView *aView);
- @end
- NS_ASSUME_NONNULL_END
|