在快速3更新中,我收到此错误消息uiviewanimation - 在Swift 3中`curveEaseInOut`不可用-LMLPHP
请告诉我方法调用是否有任何变化。
谢谢

最佳答案

您需要为curveEaseInOut使用数组:

UIView.animate(withDuration: duration, delay: 0.0, option: [.curveEaseIn, .curveEaseOut], animations: { [weak self]() -> void in }
curveEaseInOut已在Swift 3.0中删除,因此这是实现动画的解决方法。

10-07 23:15