I'm running Xcode 10 beta with Swift 4.2. Xcode wants to convert my Xcode 9.4.1 with Swift 4.1 code to Swift 4.2 syntax. The changes are all UIView.animate(... options: ...)
.
I using options like .curveEaseIn
which worked fine before but it wants to change them to UIView.AnimationOptions.curveEaseIn
.
What happened to Swift's ENUM type inference?