Skip to content

Instantly share code, notes, and snippets.

View furiosFast's full-sized avatar
🏄
Make love, don't do Computer Science!

furiosFast

🏄
Make love, don't do Computer Science!
View GitHub Profile
@furiosFast
furiosFast / animateTable.swift
Last active February 6, 2021 18:28
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