码迷,mamicode.com
首页 > 移动开发 > 详细

iOS TableViewCell 加载时的动画

时间:2015-03-09 09:25:01      阅读:206      评论:0      收藏:0      [点我收藏+]

标签:ios swift

    //设置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)

        })

    }


iOS TableViewCell 加载时的动画

标签:ios swift

原文地址:http://blog.csdn.net/red_edward/article/details/44147565

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!