Files
yinmeng-ios/xplan-ios/Main/Room/View/XPMiniRoomView.h

32 lines
980 B
C
Raw Normal View History

2021-12-03 17:07:21 +08:00
//
// XPMiniRoomView.h
// xplan-ios
//
// Created by 冯硕 on 2021/12/3.
//
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
@class RoomInfoModel;
@interface XPMiniRoomView : UIView
/*
1.使 view tabbar中添加
2. 退
*/
+ (instancetype)shareMiniRoomView;
///进房需要的控制器
@property (nonatomic,weak) UIViewController * controller;
///当前最小化的房间的uid 如果没有的话 为nil
@property (nonatomic,strong, readonly) NSString *currentRoomUid;
2021-12-03 19:10:35 +08:00
///房间的id
@property (nonatomic,strong, readonly) NSString *currentRoomId;
2021-12-03 17:07:21 +08:00
///房间最小化 初始化
- (void)configRoomMiniView:(RoomInfoModel *)roomInfo;
///隐藏最小化的view
- (void)hiddenRoomMiniView;
2021-12-03 17:07:21 +08:00
@end
NS_ASSUME_NONNULL_END