Skip to content

Instantly share code, notes, and snippets.

@furiosFast
Last active February 6, 2021 18:28
Show Gist options
  • Save furiosFast/836f85235965a0ab5d3782bc6dc199b2 to your computer and use it in GitHub Desktop.
Save furiosFast/836f85235965a0ab5d3782bc6dc199b2 to your computer and use it in GitHub Desktop.
Simple TableView animation
///Animazione per la visualizzazzione delle celle delle tableView
func animateTable(_ tableView: UITableView) {
tableView.reloadData()
let cells = tableView.visibleCells
let tableHeight: CGFloat = tableView.bounds.size.height
for i in cells {
let cell: TableViewCellController = i as! TableViewCellController
cell.transform = CGAffineTransform(translationX: 0, y: tableHeight)
}
var index = 0
for a in cells {
let cell: TableViewCellController = a as! TableViewCellController
UIView.animate(withDuration: 1.0, delay: 0.05 * index.double, usingSpringWithDamping: 0.8, initialSpringVelocity: 0, options: [], animations: {
cell.transform = CGAffineTransform(translationX: 0, y: 0);
}, completion: nil)
index += 1
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment