cdts/xdts-ios 3/TUICalling/Source/UI/Views/TUIAudioUserContainerView.h

27 lines
555 B
C
Raw Normal View History

2023-07-27 09:20:00 +08:00
//
// TUIAudioUserContainerView.h
// TUICalling
//
// Created by noah on 2021/8/30.
//
#import <UIKit/UIKit.h>
@class CallUserModel;
NS_ASSUME_NONNULL_BEGIN
@interface TUIAudioUserContainerView : UIView
/// 配置用户信息视图
/// @param userModel 数据Modle
/// @param text 等待文本
- (void)configUserInfoViewWith:(CallUserModel *)userModel showWaitingText:(NSString *)text;
///配置用户名的字体颜色/文本内容
/// @param textColor 字体颜色
- (void)setUserNameTextColor:(UIColor *)textColor;
@end
NS_ASSUME_NONNULL_END