31 lines
872 B
Objective-C
31 lines
872 B
Objective-C
//
|
|
// RoomSmallView.h
|
|
// DingDangApp
|
|
//
|
|
// Created by apple on 2023/6/1.
|
|
//
|
|
|
|
#import "WLBaseView.h"
|
|
#import "RoomInfoModel.h"
|
|
#import "RoomInfoModel.h"
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface RoomSmallView : WLBaseView
|
|
@property (nonatomic,assign) BOOL isDrag;
|
|
@property (nonatomic,assign) CGRect freeRect;
|
|
@property (nonatomic, strong) UIImageView * bgImaegView;
|
|
@property (nonatomic, strong) UIImageView * headImageView;
|
|
@property (nonatomic, strong) UIButton * closebtn;
|
|
@property (nonatomic, strong) UILabel * liveNameLabel;
|
|
@property (nonatomic, strong) UIView * lineView;
|
|
+ (instancetype)shareView;
|
|
- (void)showView;
|
|
- (void)dismiss;
|
|
- (void)reloadWithData:(RoomInfoModel *)model;
|
|
@property (nonatomic,assign) BOOL isKeep;
|
|
@property (nonatomic, copy) void(^backEnterBlock)(void);
|
|
@property (nonatomic, copy) void(^backCloseBlock)(void);
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|