我只有在使用 Swift 时才会收到这个错误,我想知道目前是否还有其他人有这个问题
Extra argument 'usingSpringWithDamping' in call
UIView.animateWithDuration(NSTimeInterval(doctorPracticeDuration), delay: 0.0, usingSpringWithDamping: 0.3, initialSpringVelocity: textAnimationVelocity, options: .CurveEaseInOut, animations: {}, completion: {success in })
我正在使用 Xcode 6 beta 7
有趣的是,这有效:
UIView.animateWithDuration(NSTimeInterval(doctorPracticeDuration), delay: 0.0, options: .Repeat, animations: {}, completion: {finished in })
Swift 中是否可能不支持使用弹簧动画?我知道它还很早...