Skip to content

Instantly share code, notes, and snippets.

@reyandrey
Created March 23, 2020 21:07
Show Gist options
  • Save reyandrey/1748ed6a3576d4084e91b97706f0d071 to your computer and use it in GitHub Desktop.
Save reyandrey/1748ed6a3576d4084e91b97706f0d071 to your computer and use it in GitHub Desktop.
TableView
func tableView(_ tableView: UITableView, willDisplay cell: UITableViewCell, forRowAt indexPath: IndexPath) {
guard tableView.isDragging else { return }
cell.transform = CGAffineTransform(scaleX: 0.5, y: 0.5)
UIView.animate(withDuration: 0.3, animations: {
cell.transform = CGAffineTransform.identity
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment