update tableView contenSize

来源:互联网 发布:淘宝正品化妆品店 编辑:程序博客网 时间:2024/05/19 19:39
   NSIndexPath *messageIndexPath = [NSIndexPath indexPathForRow:afterRowCount-1 inSection:0];
   [self.tableView beginUpdates];
   [self.tableView insertRowsAtIndexPaths:@[messageIndexPath] withRowAnimation:UITableViewRowAnimationNone];

   [self.tableView endUpdates];


  NSLog(@"---------%f---------", self.tableView.contentSize.height);
  self.tableView.contentSize = [self.tableView sizeThatFits:CGSizeMake(CGRectGetWidth(self.tableView.bounds), CGFLOAT_MAX)]; //至关重要
  NSLog(@"--------%f----------", self.tableView.contentSize.height);

1 0
原创粉丝点击