PBUserHomePagePersonView.h 559 B

1234567891011121314151617181920212223242526
  1. //
  2. // PBUserHomePagePersonView.h
  3. // AFNetworking
  4. //
  5. // Created by LStar on 2025/1/25.
  6. //
  7. #import <UIKit/UIKit.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @class PBUserHomePageModel;
  10. @interface PBUserHomePagePersonView : UIView
  11. @property (nonatomic,strong)PBUserHomePageModel *model;
  12. ///视频跳转
  13. @property (nonatomic,copy) void (^videoAction)(PBUserHomePagePersonView *aView);
  14. ///关注
  15. @property (nonatomic,copy) void (^followAction)(PBUserHomePagePersonView *aView);
  16. ///关注按钮
  17. @property (nonatomic,strong)UIButton *forceButton;
  18. @end
  19. NS_ASSUME_NONNULL_END