注册

IOS tableView 的farm 修改问题

我修改了继承于EaseMessageViewController 页面的tableView的尺寸 在上面加了个自定义的View,但是当点击发送表情的按钮时下方的ToolBar会弹起来把tableView顶起来 ,这样就看不到上面的cell了。而且收起ToolBar后tableView不会下移了。
已邀请:
改下:
//EaseMessageViewController
- (void)chatToolbarDidChangeFrameToHeight:(CGFloat)toHeight
{
[UIView animateWithDuration:0.3 animations:^{
CGRect rect = self.tableView.frame;
// rect.origin.y = 0;
rect.size.height = self.view.frame.size.height - toHeight-rect.origin.y;
self.tableView.frame = rect;
}];
[self _scrollViewToBottom:NO];
}
可以把他写成一个view然后加到, self.tableView.tableHeaderView上面

要回复问题请先登录注册