PBUserHomePageAppointView.h 482 B

12345678910111213141516171819202122
  1. //
  2. // PBUserHomePageAppointView.h
  3. // PBSDK
  4. //
  5. // Created by LStar on 2025/1/26.
  6. //
  7. #import <UIKit/UIKit.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @class PBUserHomePageSubscribeModel;
  10. @interface PBUserHomePageAppointView : UIView
  11. ///数据源
  12. @property (nonatomic,strong)NSArray <PBUserHomePageSubscribeModel *> *dataArray;
  13. ///点击事件
  14. @property (nonatomic,copy) void (^clickItem)(PBUserHomePageAppointView *appointView,PBUserHomePageSubscribeModel *model);
  15. @end
  16. NS_ASSUME_NONNULL_END