Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save GemmaDelOlmo/e343459757627facaa7462b3895f4949 to your computer and use it in GitHub Desktop.

Select an option

Save GemmaDelOlmo/e343459757627facaa7462b3895f4949 to your computer and use it in GitHub Desktop.
import Foundation
import UIKit
extension UITableView {
public func reloadData(completion:@escaping ()->()) {
UIView.animate(withDuration: 0, animations: reloadData)
{ _ in completion() }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment