表视图单元缩放动画

时间:2016-06-05 07:59:25

标签: ios objective-c uitableview animation

您好我是IOS devlopment的新手。我需要我的表格视图单元格来缩放动画的动画(每当我向上滚动单元格需要根据滚动位置向外扩展,每当我向下滚动单元格时,应根据滚动位置)。我试图找到,但我无法触发实际的解决方案。任何人都可以帮我解决这个问题。谢谢你提前帮助

1 个答案:

答案 0 :(得分:0)

将此代码放在视图控制器中:

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)
        })
    }

别忘了将delegatedatasource添加到tableview。更多http://developers-club.com/posts/234853/