Skip to content

Instantly share code, notes, and snippets.

@joshdholtz
Last active August 22, 2022 07:08
Show Gist options
  • Star 17 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save joshdholtz/11af7d5e572ecf6cd8ca6705ceede44a to your computer and use it in GitHub Desktop.
Save joshdholtz/11af7d5e572ecf6cd8ca6705ceede44a to your computer and use it in GitHub Desktop.
Used when loading more data into UITableView for a smooth "infinite scroll" feel
// I dont want my table jumping/animation when appending new rows
// for an infinite scroll feel
//
// Some of this might not be needed but it works
//
// TODO: Possibly garbage
extension UITableView {
func reloadDataSmoothly() {
UIView.setAnimationsEnabled(false)
CATransaction.begin()
CATransaction.setCompletionBlock { () -> Void in
UIView.setAnimationsEnabled(true)
}
reloadData()
beginUpdates()
endUpdates()
CATransaction.commit()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment