Skip to content

Instantly share code, notes, and snippets.

@jeamesbone
Last active August 29, 2015 14:16
Show Gist options
  • Save jeamesbone/79b7b58b04aec26bf5c2 to your computer and use it in GitHub Desktop.
Save jeamesbone/79b7b58b04aec26bf5c2 to your computer and use it in GitHub Desktop.
UITableView+Animate
// Copyright (c) 2015 Jeames Bone. All rights reserved.
import UIKit
extension UITableView {
func animate(animations: () -> Void) {
beginUpdates()
animations()
endUpdates()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment