Skip to content

Instantly share code, notes, and snippets.

@psparago
psparago / UIExtensions.swift
Created January 24, 2016 18:04
Simple UIView bounce animation
extension UIView {
private class AnimationDelegate : NSObject {
let completion: (() -> Void)?
init(completion: (() -> Void)?) {
self.completion = completion
}
override func animationDidStop(theAnimation: CAAnimation, finished flag: Bool) {