UITableViewCell出现动画
Posted stevenhusir
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了UITableViewCell出现动画相关的知识,希望对你有一定的参考价值。
UITableViewCell出现动画
// 当cell 将要显示的时候调用 - (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath{ cell.transform = CGAffineTransformMakeTranslation(self.view.width, 0); [UIView animateWithDuration:0.5f animations:^{ cell.transform = CGAffineTransformIdentity; }]; }
以上是关于UITableViewCell出现动画的主要内容,如果未能解决你的问题,请参考以下文章
在 UITableViewCell 中为自定义 UIButton 设置动画
UIView 动画在 UITableViewCell 内无法正常工作
自定义 UITableViewCell 和 setSelected:animated 上的动画: