#iOS问题记录#UITableView加载后直接滑动倒最底部
Posted 千里之行,始于足下
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了#iOS问题记录#UITableView加载后直接滑动倒最底部相关的知识,希望对你有一定的参考价值。
类似QQ的聊天框,当进入聊天框,直接滑动倒最底部;
需要先将以他变了view滚动倒底部,再来移动NSIndexPath,
代码如下:
-(void) doForceScrollToBottom { dispatch_async(dispatch_get_main_queue(), ^ { if( self.mTableViewConsult.contentSize.height - self.mTableViewConsult.contentOffset.y > self.mTableViewConsult.frame.size.height ) { [self.mTableViewConsult setContentOffset:CGPointMake(0, self.mTableViewConsult.contentSize.height - self.mTableViewConsult.frame.size.height)]; } usleep(5000); NSIndexPath* path = [NSIndexPath indexPathForRow: nMaxTableCount - 1 inSection:0]; if( path ) { [self.mTableViewConsult scrollToRowAtIndexPath:path atScrollPosition:UITableViewScrollPositionBottom animated:NO]; } }); }
以上是关于#iOS问题记录#UITableView加载后直接滑动倒最底部的主要内容,如果未能解决你的问题,请参考以下文章
iOS为啥只有在重新加载UITableView后才能正确显示UIView
iOS - 在 AFNetworking 异步图像下载线程完成后重新加载 UITableView