输入区域
Global IM UIKit 的输入区域是通过 RCInputBar
统一创建和控制的,支持自定义输入框按钮、自定义扩展功能、以及自定义贴纸。
下图输入区从左至右依次是加号扩展按钮、内容输入框(含贴纸按钮)、语音录制按钮。
修改输入栏按钮
输入框文本输入区域不允许修改,只支持对文本输入区域的左右按钮增加或者删除。RCInputBar 的属性 leftItems
可以获取到默认的左边按钮,属性 rightItems
可以获取到默认的右边按钮。
您可以在会话页面 RCChatViewController
的 viewDidLoad
之后改变输入栏的按钮
- (void)viewDidLoad {
[super viewDidLoad];
/// 左按钮
__weak typeof(self) weakSelf = self;
NSMutableArray *tempList = self.inputBar.leftItems.mutableCopy;
{
RCBarItem *barItem = [RCBarItem itemWithTitle:@"" image:[UIImage imageNamed:@"video"] action:^(RCBarItem *item){
[weakSelf.view showHUDMessage:@"video call Clicked"];
}];
barItem.tag = 2001;
[tempList addObject:barItem];
}
self.inputBar.leftItems = tempList.copy;
/// 右按钮
tempList = self.inputBar.rightItems.mutableCopy;
{
RCBarItem *barItem = [RCBarItem itemWithTitle:@"" image:[UIImage imageNamed:@"voice"] action:^(RCBarItem *item){
[weakSelf.view showHUDMessage:@"voice call Clicked"];
}];
barItem.tag = 2002;
[tempList addObject:barItem];
}
self.inputBar.rightItems = tempList.copy;
}