关于im:给融云的输入框上方加个功能按钮怎么整

72次阅读

共计 1937 个字符,预计需要花费 5 分钟才能阅读完成。

给输入框上方加个性能按钮,相似常用语或者抽奖啥的,是个挺广泛的需要,惋惜遍寻文档 (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/),登录后盾提工单,他们会有专人给出解决方案。

正文完
 0