12345678910111213141516171819202122 |
- //
- // PBUserHomePageAppointView.h
- // PBSDK
- //
- // Created by LStar on 2025/1/26.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @class PBUserHomePageSubscribeModel;
- @interface PBUserHomePageAppointView : UIView
- ///数据源
- @property (nonatomic,strong)NSArray <PBUserHomePageSubscribeModel *> *dataArray;
- ///点击事件
- @property (nonatomic,copy) void (^clickItem)(PBUserHomePageAppointView *appointView,PBUserHomePageSubscribeModel *model);
- @end
- NS_ASSUME_NONNULL_END
|