28 lines
534 B
C
28 lines
534 B
C
|
|
//
|
||
|
|
// QXSeatHeaderView.h
|
||
|
|
// QXLive
|
||
|
|
//
|
||
|
|
// Created by 启星 on 2025/5/6.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import <UIKit/UIKit.h>
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
|
||
|
|
@interface QXSeatHeaderView : UIView
|
||
|
|
/// 头像装饰
|
||
|
|
@property (nonatomic,strong)UIImageView *dressImageView;
|
||
|
|
/// 头像
|
||
|
|
@property (nonatomic,strong)UIImageView *headImageView;
|
||
|
|
/// 昵称
|
||
|
|
//@property (nonatomic,strong)UILabel *nameLabel;
|
||
|
|
/// 按钮
|
||
|
|
@property (nonatomic,strong)UIButton *headBtn;
|
||
|
|
|
||
|
|
-(void)setHeadIcon:(NSString*)headerIcon
|
||
|
|
dress:(NSString*)dress;
|
||
|
|
|
||
|
|
@end
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_END
|