这里让后出现的Cell有一个小动画,稍微延迟一点出现,如下图: 代码的实现非常简单,就只有一个动画: 123456 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 }} 赞微海报分享
近期评论