在聊天界面里,发送消息后,需要将发送的消息显示在最后一行。
聊天的消息通过TableView来显示,每次发送消息后,在TableView最底部添加一行celll来显示消息,并滑动到TableView最后一行,预期实现像微信那样顺滑的从下往上顶的效果。
关键代码:
NSIndexPath *indexPath = [NSIndexPath indexPathForRow:mut.count - 1 inSection:0]; // mut为数据源
[self.tableView insertRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationAutomatic];
[self.tableView scrollToRowAtIndexPath:indexPath atScrollPosition:UITableViewScrollPositionBottom animated:NO];
这样会出现闪屏的问题:
TableView向上弹一段距离,增加的cell动画出现,即使设置成UITableViewRowAnimationNone,还是存在闪屏。
尝试不使用 scrollToRowAtIndexPath,通过contentSize和frame计算出offset,在设置TableView的setContentOffset,还是会出现闪屏的效果。
解决方式:
在修改数据源后,直接reload。
relaod之前隐藏tableview,reload之后滑动到底部,显示tableview。
NSIndexPath *indexPath = [NSIndexPath indexPathForRow:mut.count - 1 inSection:0];
self.tableView.hidden = YES;
[self.tableView reloadData];
[self.tableView scrollToRowAtIndexPath:indexPath atScrollPosition:UITableViewScrollPositionBottom animated:NO];
self.tableView.hidden = NO;
效果:
聊天.gif
另外有一个清奇的思路
将tableview在初始化的时候旋转180度,cell也做同样的处理。
CGAffineTransformRotate(self.transform, M_PI)
同时需要将初始的数据源倒序排列。
在增加新的消息的时候只要插入到数据源的首位,将cell插入tableview的首行,tableview会自动处理增加第一行cell的动画而不需要主动调用tableview的滚动。
[mut insertObject:cellModel atIndex:0];
[self.tableView insertRowsAtIndexPaths:@[[NSIndexPath indexPathForRow:0 inSection:0]] withRowAnimation:UITableViewRowAnimationAutomatic];
但是,仍存在一个问题,消息记录不管多少是从底部开始加载的。没有历史消息的时候,第一条消息是从最后一行加载出来,不会显示在界面顶部。
效果:
清奇思路.gif
网友评论