Last active
August 22, 2022 07:08
-
-
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
This file contains hidden or 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
// 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