这是一个很酷的动画效果。特别是数据多的时候
知识点在单元格(Cell)显示方法中设置动画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)})}
willDisplayCell 顾名思义。就是在Cell显示之前。
设置cell的层(layer)的变换(transform)为CATransform3DMakeScale做一个缩放动画。X,y方向的缩放从0.1到1