23 lines
422 B
C
23 lines
422 B
C
|
|
//
|
||
|
|
// TUIVodeoUserContainerView.h
|
||
|
|
// TUICalling
|
||
|
|
//
|
||
|
|
// Created by noah on 2021/8/30.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import <UIKit/UIKit.h>
|
||
|
|
@class CallUserModel;
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
|
||
|
|
@interface TUIVideoUserContainerView : UIView
|
||
|
|
|
||
|
|
/// 配置用户信息视图
|
||
|
|
/// @param userModel 数据Modle
|
||
|
|
/// @param text 等待文本
|
||
|
|
- (void)configUserInfoViewWith:(CallUserModel *)userModel showWaitingText:(NSString *)text;
|
||
|
|
|
||
|
|
@end
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_END
|