0

我想在调用 [tableView reloadData] 时为 UITableViewCell 提供翻转动画,以便它在我的应用程序中提供很酷的动画效果。在翻转这些单元格之间,我将更新标签文本。

UITableViewCell 是否可以一一翻转。请帮忙。

4

1 回答 1

0

尝试编写代码以cell.contentViewcellForRowAtIndexPath:.

  [UIView beginAnimations:@"flip Animation" context:nil];
  [UIView setAnimationDuration:0.5];
  [UIView setAnimationTransition:UIViewAnimationTransitionFlipFromLeft
                       forView: cell.contentView
                         cache:YES];
  [UIView commitAnimations];    

请在返回单元格之前添加此内容。

试试这个方法。希望这对您有所帮助。

于 2012-07-12T05:32:38.167 回答