类似于qq聊天界面,tableview每次都是显示出最新的消息(最下面的cell)
[self.table reloadData];
NSIndexPath * index = [NSIndexPath indexPathForRow:self.array.count-1inSection:0];
[self.table scrollToRowAtIndexPath:index atScrollPosition:UITableViewScrollPositionTop animated:YES];
网友评论