PBLiveUserCardView.h 870 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. //
  2. // PBLiveUserCardView.h
  3. // PBSDK_Example
  4. //
  5. // Created by hello on 2024/12/25.
  6. // Copyright © 2024 uxiume. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface PBLiveUserCardView : UIView
  11. @property (nonatomic ,strong) UIImageView *coverImageView;
  12. @property (nonatomic ,strong) UIControl *imageControl;
  13. @property (nonatomic ,strong) UILabel*userNameLabel;
  14. @property (nonatomic ,strong) UIControl*addressControl;
  15. @property (nonatomic ,strong) UIControl*visibleControl;
  16. @property (nonatomic ,strong) UILabel*addressLabel;
  17. @property (nonatomic ,strong) UILabel*visibleLabel;
  18. ///选择直播内容的文本提示
  19. @property (nonatomic,strong) UILabel *selectTypeLabel;
  20. ///点击事件回调
  21. @property (nonatomic,copy) void (^clickHandle)(NSString *action,PBLiveUserCardView * cardView);
  22. @end
  23. NS_ASSUME_NONNULL_END