会话输入框显示行数是多少,如何自定义设置

会话输入框默认最多显示 4 行,支持自定义设置显示行数,最大行数为 6 行,最小为 1 行,设置方法如下:

在会话页面

RCConversationViewController类的子类中

- (void)viewDidLoad{

    //调用 self.chatSessionInputBarControl.maxInputLines 即可设置  
    
    self.chatSessionInputBarControl.maxInputLines  = 6;
 
}

注:SDK 2.9.7 及以上版本支持设置功能

/** 
    输入框最大输入行数 @discussion 该变量设置范围为: 1~6, 
    超过该范围会自动调整为边界值 
 */
 
 @property (nonatomic, assign) NSInteger maxInputLines;