zl程序教程

您现在的位置是:首页 >  其它

当前栏目

update tableView contenSize

update tableView
2023-09-14 09:06:24 时间
   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);