youku觀看地址http://v.youku.com/v_show/id_XNzMxODQzNDIw.htmlphp
這是一個很酷的動畫效果。特別是數據多的時候html
在單元格(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顯示以前。app
設置cell的層(layer)的變換(transform)爲CATransform3DMakeScale作一個縮放動畫。X,y方向的縮放從0.1到1佈局
高清視頻與代碼下載地址動畫
http://pan.baidu.com/s/1sjHd5qXurl
Swift實戰-豆瓣電臺系列spa