//设置cell的显示动画 func tableView(tableView: UITableView!, willDisplayCell cell:UITableViewCell!, forRowAtIndexPath indexPath: NSIndexPath!){ //设置cell的显示动画为3D缩放 //xy方向缩放的初始值为0.1 cell.layer.transform = CATransform3DMakeScale(0.1, 0.1, 1) //设置动画时间为0.25秒,xy方向缩放的最终值为1 UIView.animateWithDuration(0.25, animations: { () -> Void in cell.layer.transform = CATransform3DMakeScale(1, 1, 1)
原创文章,作者:奋斗,如若转载,请注明出处:https://blog.ytso.com/5197.html