📜  tableview 单元格动画 swift 代码示例

📅  最后修改于: 2022-03-11 15:01:02.684000             🧑  作者: Mango

代码示例1
func tableView(tableView: UITableView, willDisplayCell cell: UITableViewCell, forRowAtIndexPath indexPath: NSIndexPath) {
    cell.layer.transform = CATransform3DMakeScale(0.1,0.1,1)
    UIView.animateWithDuration(0.25, animations: {
        cell.layer.transform = CATransform3DMakeScale(1,1,1)
    })

}