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

tableView 自动滚动到底部

时间:2018-07-10 17:40:56      阅读:488      评论:0      收藏:0      [点我收藏+]

标签:自动   str   rect   self   ring   ESS   oid   contents   4.0   

- (void)addData:(id)object{
   
   
    NSInteger count = self.dataArray.count;
   
   
   
    _index ++;
    NSString * str = [NSString stringWithFormat:@"当前第%zd行",_index];
    [self.dataArray addObject:str];
   
    if (count * 44.0f > self.tableView.height) {
        NSMutableArray *insert = [[NSMutableArray alloc] init];
        for (NSInteger index = count; index < count+1; index++) {
            NSIndexPath *indexPath = [NSIndexPath indexPathForRow:index inSection:0];
            [insert addObject:indexPath];
        }
        [self.tableView beginUpdates];
        [self.tableView insertRowsAtIndexPaths:insert withRowAnimation:UITableViewRowAnimationFade];
        [self.tableView endUpdates];
        [self.tableView layoutIfNeeded];
       
        [self changeInsets:object];
        [self scrollToBottom];
    } else {
        [self.tableView reloadData];
    }
 
   
  
}
 
 
- (void)changeInsets:(id)object
{
    CGFloat height = 0;
    height += 44.0f;
//    for (NTESMessageModel *model in newModels) {
//        height += 44.0f;
//    }
    UIEdgeInsets insets = self.tableView.contentInset;
    CGFloat contentHeight = self.tableView.contentSize.height - insets.top;
    contentHeight += height;
    CGFloat top = contentHeight > self.tableView.height? 0 : self.tableView.height - contentHeight;
    insets.top = top;
   
//    MyLog(@"tableViewHeight == %f",self.tableView.height);
//    MyLog(@"top == %f",top);
   
    self.tableView.contentInset = insets;
}
 
- (void)scrollToBottom
{
    dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(0.1 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
        CGFloat offset = self.tableView.contentSize.height - self.tableView.height;
        [self.tableView scrollRectToVisible:CGRectMake(0, offset, self.tableView.width, self.tableView.height) animated:YES];
    });
}

tableView 自动滚动到底部

标签:自动   str   rect   self   ring   ESS   oid   contents   4.0   

原文地址:https://www.cnblogs.com/Jackie-subDai/p/9290099.html

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