我的收藏

tableView默认显示最底下

2018-07-31  本文已影响6人  今年27

最近用tableview默认滑到最底下

- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath
{
    if (self.isScrollToBottom == NO) {
        [self.tableView scrollToRowAtIndexPath:[NSIndexPath indexPathForRow:self.messageArray.count-1 inSection:0] atScrollPosition:UITableViewScrollPositionNone animated:NO];
        
        if (indexPath.row == self.messageArray.count-1) {
            
            self.isScrollToBottom = YES;
        }
    }

}
上一篇下一篇

猜你喜欢

热点阅读