123456789101112131415161718192021222324252627282930313233343536373839404142 |
- //
- // PBLiveUserCardView.h
- // PBSDK_Example
- //
- // Created by hello on 2024/12/25.
- // Copyright © 2024 uxiume. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface PBLiveUserCardView : UIView
- @property (nonatomic ,strong) UIImageView *coverImageView;
- @property (nonatomic ,strong) UIControl *imageControl;
- @property (nonatomic ,strong) UILabel*userNameLabel;
- @property (nonatomic ,strong) UIControl*addressControl;
- @property (nonatomic ,strong) UIControl*visibleControl;
- @property (nonatomic ,strong) UILabel*addressLabel;
- @property (nonatomic ,strong) UILabel*visibleLabel;
- ///选择直播内容的文本提示
- @property (nonatomic,strong) UILabel *selectTypeLabel;
- ///点击事件回调
- @property (nonatomic,copy) void (^clickHandle)(NSString *action,PBLiveUserCardView * cardView);
- @end
- NS_ASSUME_NONNULL_END
|