`curveEaseInOut` 在 Swift 3 中不可用
`curveEaseInOut` is Unavailable in Swift 3
在 swift 3 更新中我收到此错误消息
如果方法调用有任何变化,请告诉我。
谢谢
您需要为 curveEaseInOut
使用数组:
UIView.animate(withDuration: duration, delay: 0.0, option: [.curveEaseIn, .curveEaseOut], animations: { [weak self]() -> void in }
curveEaseInOut
已在 Swift 3.0
中删除,因此这是实现动画的解决方法。
在 swift 3 更新中我收到此错误消息
如果方法调用有任何变化,请告诉我。
谢谢
您需要为 curveEaseInOut
使用数组:
UIView.animate(withDuration: duration, delay: 0.0, option: [.curveEaseIn, .curveEaseOut], animations: { [weak self]() -> void in }
curveEaseInOut
已在 Swift 3.0
中删除,因此这是实现动画的解决方法。