Try writing this with both an option field and a hanging animation closure, with no completion...
UIView.animateWithDuration(0.2, delay: 0, options: .CurveEaseOut, animations: {
///DO ANIMATION STUFF
}, completion: nil)
I should beable to do this
UIView.animateWithDuration(0.2, options: .CurveEaseOut) {
///DO ANIMATION STUFF
}
Yes this could be added with an extension on UIView, but the point is I shouldn't have to.