문제

When changing the row height for a cell with

-(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
  if (a)
    return 55
  else
    return 266
}

Then,

[aTableView beginUpdates];

The table cell will animate to the height if it has changed.

Is there anyway to control the speed of this animation?

도움이 되었습니까?

해결책

No. No way to control the speed of the animation of table view. Maybe you can write a custom table view, then you can control many things as you like.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top