tableView默认显示最底下

最近用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;
        }
    }

}

你可能感兴趣的:(tableView默认显示最底下)