首页 > 代码库 > uitableview滚动到最后一行
uitableview滚动到最后一行
本文转载至 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];
}
############
- 可在viewDidAppear中实现加入 [tablvew setContentOffset:CGPointMake(0,480) animated:YES];
- 在tableView内添加一个searchbar,一起滚动;开始时隐藏headerView(即让tableView向上滚动headerView的高度:默认44)
- UISearchBar *mySearchBar = [[UISearchBar alloc] init];
- [mySearchBar sizeToFit];
- tableView.tableHeaderView = mySearchBar;
- //UITableView开始滚动到的位置(这样一开始headerView是不显示的)
- [tableView setContentOffset:CGPointMake(0.0, 44.0) animated:NO];
uitableview滚动到最后一行
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。