当我使用1秒的动画翻译一个视图时它不起作用,但是当我执行transform.identity时它工作正常。
这是我的代码:
func hideCarousel() {
UIView.animate(withDuration: 1, animations: {
self.carouselER.transform = CGAffineTransform(translationX: 0, y: 200)
})
}
func showCarousel() {
UIView.animate(withDuration: 1, animations: {
self.carouselER.transform = .identity
})
}