I'm getting this error only when using Swift and I was wondering if anybody else has this issue currently
Extra argument 'usingSpringWithDamping' in call
UIView.animateWithDuration(NSTimeInterval(doctorPracticeDuration), delay: 0.0, usingSpringWithDamping: 0.3, initialSpringVelocity: textAnimationVelocity, options: .CurveEaseInOut, animations: {}, completion: {success in })
I'm using Xcode 6 beta 7
It's interesting that this works:
UIView.animateWithDuration(NSTimeInterval(doctorPracticeDuration), delay: 0.0, options: .Repeat, animations: {}, completion: {finished in })
Is it possible that using a spring animation isn't supported yet in Swift? I know its still early on...