iOS Cell小动画

Posted by He Zongjiang on 2017-12-04

这里让后出现的Cell有一个小动画,稍微延迟一点出现,如下图:

代码的实现非常简单,就只有一个动画:

1
2
3
4
5
6
func tableView(_ tableView: UITableView, willDisplay cell: UITableViewCell, forRowAt indexPath: IndexPath) {
cell.transform = CGAffineTransform(translationX: 0, y: 30)
UIView.animate(withDuration: 0.8) {
cell.transform = .identity
}
}