写点什么

给融云的输入框上方加个功能按钮,怎么整?

发布于: 2021 年 03 月 16 日

给输入框上方加个功能按钮,类似常用语或者抽奖啥的,是个挺普遍的需求,可惜遍寻文档(https://docs.rongcloud.cn/v4/)无果,只能靠自己了,咱们来看看怎么做吧。


首先,我们要先在聊天页面添加个属性,也就是需要功能按钮所在的 view


@property (nonatomic, strong) UIView *needAddView;
复制代码

再就是需要重写 viewWillAppear 生命周期函数,添加这个 needAddView,设置 UI 布局,保证进入页面时,needAddView 可以正确显示


- (void)viewWillAppear:(BOOL)animated {
复制代码


    [super viewWillAppear:animated];
复制代码


    
复制代码


    //初始化 needAddView,添加到 self.view 上,坐标 y = 输入框的 y 坐标 - needAddView 高度
复制代码


    CGFloat needAddView_height = 50.f;
复制代码


    CGFloat y = self.chatSessionInputBarControl.frame.origin.y - needAddView_height;
复制代码


    self.needAddView = [[UIView alloc] initWithFrame:CGRectMake(0, y, self.conversationMessageCollectionView.frame.size.width, needAddView_height)];
复制代码


    self.needAddView.backgroundColor = [UIColor blueColor];
复制代码


    [self.view addSubview:self.needAddView];
复制代码


    
复制代码


    //设置消息内容 collectionView 的高度,要减去 needAddView 的高度,避免被遮挡。
复制代码


    CGRect frame = self.conversationMessageCollectionView.frame;
复制代码


    frame.size.height -= needAddView_height;
复制代码


    self.conversationMessageCollectionView.frame = frame;
复制代码


}
复制代码


复制代码

最后需要根据输入框的位置变化,对 UI 布局做改变


-(void)chatInputBar:(RCChatSessionInputBarControl *)chatInputBar shouldChangeFrame:(CGRect)frame {
复制代码


    //切记要调用父类方法,保证 UI 布局显示正确
复制代码


    [super chatInputBar:chatInputBar shouldChangeFrame:frame];
复制代码


    
复制代码


    //needAddView 的坐标 y = 输入框的 y 坐标 - needAddView 高度。回调方法中的 frame 是输入框改变后的值。
复制代码


    CGRect viewFrame = self.needAddView.frame;
复制代码


    viewFrame.origin.y = frame.origin.y - viewFrame.size.height;
复制代码


    self.needAddView.frame = viewFrame;
复制代码


    
复制代码


    //设置消息内容 collectionView 的高度,要减去 needAddView 的高度,避免被遮挡。
复制代码


    CGRect collectionViewFrame = self.conversationMessageCollectionView.frame;
复制代码


    collectionViewFrame.size.height -= self.needAddView.frame.size.height;
复制代码


    self.conversationMessageCollectionView.frame = collectionViewFrame;
复制代码


    
复制代码


    //重新设置消息内容 collectionView 的 ContentOffset,正常显示消息内容。
复制代码


    if (self.conversationMessageCollectionView.contentSize.height > collectionViewFrame.size.height) {
复制代码


        [self.conversationMessageCollectionView setContentOffset:CGPointMake(0, self.conversationMessageCollectionView.contentSize.height - collectionViewFrame.size.height) animated:NO];
复制代码


    }
复制代码


}
复制代码

最后再提一句,如果有类似的功能需求实现不了的,可以去融云官网(https://www.rongcloud.cn/),登录后台提工单,他们会有专人给出解决方案。


用户头像

还未添加个人签名 2021.01.26 加入

还未添加个人简介

评论

发布
暂无评论
给融云的输入框上方加个功能按钮,怎么整?