23 lines
445 B
Objective-C
Executable File
23 lines
445 B
Objective-C
Executable File
//
|
|
// RoomPublicSelectView.h
|
|
// MoHuanXingYu
|
|
//
|
|
// Created by 马方圆 on 2021/5/22.
|
|
// Copyright © 2021 MoHuanXingYu. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "RCMicRoomViewModel.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface RoomPublicSelectView : UIView
|
|
|
|
- (instancetype)initWithFrame:(CGRect)frame viewModel:(RCMicRoomViewModel *)viewModel;
|
|
|
|
@property (nonatomic, copy)void(^onSelectBlock)(void);
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|