码迷,mamicode.com
首页 > 移动开发 > 详细

IOS的UITableView显示最底部的cell

时间:2014-12-04 18:08:49      阅读:257      评论:0      收藏:0      [点我收藏+]

标签:style   blog   io   ar   color   os   sp   for   on   

如果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];
    }




IOS的UITableView显示最底部的cell

标签:style   blog   io   ar   color   os   sp   for   on   

原文地址:http://blog.csdn.net/fanxiaoxuan1234/article/details/41725465

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!