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

#iOS问题记录#UITableView加载后直接滑动倒最底部

时间:2017-04-16 14:19:23      阅读:233      评论:0      收藏:0      [点我收藏+]

标签:offset   UI   style   osi   set   scroll   consul   记录   sleep   

类似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加载后直接滑动倒最底部

标签:offset   UI   style   osi   set   scroll   consul   记录   sleep   

原文地址:http://www.cnblogs.com/Sanje3000/p/6718507.html

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