Files
yinmeng-ios-store/yinmeng-ios/DingDangApp/CodeClass/Room/View/SmallRoom/RoomSmallView.h
2024-01-05 17:46:44 +08:00

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