IOS的UITableView显示最底部的cell

如果tableView返回多个section,每个section中只有1个row,则在[_diaryTableView reloadData]后,加上

    NSIndexPath *indexPath = [NSIndexPath indexPathForRow:0 inSection:_contents.count - 1];
    if (indexPath.section < [self numberOfSectionsInTableView:_diaryTableView]) {
        [_diaryTableView scrollToRowAtIndexPath:indexPath atScrollPosition:UITableViewScrollPositionBottom animated:YES];
    }

如果tableView返回1个section,每个section中有多个row,则在[_diaryTableViewreloadData]后,加上

 NSIndexPath *indexPath = [NSIndexPath indexPathForRow:_contents.count - 1 inSection:0];
    if (indexPath.row < [_diaryTableView numberOfRowsInSection:0]) {
        [_diaryTableView scrollToRowAtIndexPath:indexPath atScrollPosition:UITableViewScrollPositionBottom animated:YES];
    }




郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。