1234567891011121314151617181920212223242526 |
- //
- // PBUserHomePagePersonView.h
- // AFNetworking
- //
- // Created by LStar on 2025/1/25.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @class PBUserHomePageModel;
- @interface PBUserHomePagePersonView : UIView
- @property (nonatomic,strong)PBUserHomePageModel *model;
- ///视频跳转
- @property (nonatomic,copy) void (^videoAction)(PBUserHomePagePersonView *aView);
- ///关注
- @property (nonatomic,copy) void (^followAction)(PBUserHomePagePersonView *aView);
- ///关注按钮
- @property (nonatomic,strong)UIButton *forceButton;
- @end
- NS_ASSUME_NONNULL_END
|