码迷,mamicode.com
首页 > 其他好文 > 详细

uitableview滚动到最后一行

时间:2015-01-06 19:32:24      阅读:1448      评论:0      收藏:0      [点我收藏+]

标签:

本文转载至 http://mrjeye.iteye.com/blog/1278521

 

- (void)scrollTableToFoot:(BOOL)animated

{

    NSInteger s = [self.tableView numberOfSections];

    if (s<1) return;

    NSInteger r = [self.tableView numberOfRowsInSection:s-1];

    if (r<1) return;

    

    NSIndexPath *ip = [NSIndexPath indexPathForRow:r-1 inSection:s-1];

    

    [self.tableView scrollToRowAtIndexPath:ip atScrollPosition:UITableViewScrollPositionBottom animated:animated];

 

}

 

############

 

  1. 可在viewDidAppear中实现加入 [tablvew setContentOffset:CGPointMake(0,480) animated:YES];  
  2. 在tableView内添加一个searchbar,一起滚动;开始时隐藏headerView(即让tableView向上滚动headerView的高度:默认44)  
  3. UISearchBar *mySearchBar = [[UISearchBar alloc] init];  
  4. [mySearchBar sizeToFit];  
  5.   
  6. tableView.tableHeaderView = mySearchBar;  
  7. //UITableView开始滚动到的位置(这样一开始headerView是不显示的)  
  8. [tableView setContentOffset:CGPointMake(0.0, 44.0) animated:NO];  

 

uitableview滚动到最后一行

标签:

原文地址:http://www.cnblogs.com/Camier-myNiuer/p/4206622.html

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