当我点击我的应用程序中的按钮时,我希望它旋转180度。我的下面的代码有效,但如果它再次单击该按钮,它根本不会旋转,它只会停留在原始位置。
以下是我的代码
func animateRecommendButton() {
UIView.animate(withDuration: 0.25) { () -> Void in
self.recommendButton.transform = CGAffineTransform(rotationAngle: CGFloat.pi)
}
}