我想在tableview單元格中添加動畫和動畫工作正常。但是,當我試圖停止通過點擊它不停止的tableview的滾動。通常在滾動tableview中,如果我們點擊屏幕,滾動將停止。但是當我添加這些動畫不起作用。下面是我使用的動畫tableview滾動不停止點擊如果我動畫tableview單元格
func tableView(tableView: UITableView, willDisplayCell cell: UITableViewCell, forRowAtIndexPath indexPath: NSIndexPath) {
let rotationTransform = CATransform3DScale(CATransform3DIdentity, 0.4, 0.4, 0)
cell.layer.transform = rotationTransform
UIView.animateWithDuration(0.5) {() -> Void in
cell.layer.transform = CATransform3DIdentity
}
}
嘿檢查我的答案它的測試和非常好的工作 – Mayur