Last active
February 6, 2021 18:28
-
-
Save furiosFast/836f85235965a0ab5d3782bc6dc199b2 to your computer and use it in GitHub Desktop.
Simple TableView animation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
///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