rotate png inside uibutton

后端 未结 1 1139
悲&欢浪女
悲&欢浪女 2021-01-16 11:08

I have a UIButton inside a titleView of a UINavigationBar. I want to rotate a downwards caret image 180 degrees every time the user taps a given b

相关标签:
1条回答
  • 2021-01-16 11:35

    Here's an example of how can you do it using Transforms:- The code works with all the elements that inherits from UIView

    UIView.animate(withDuration: 0.5) {
                self.yourButton.imageView?.transform = CGAffineTransform(rotationAngle: CGFloat.pi)
    
    }
    

    To set it back to original position:-

    UIView.animate(withDuration: 0.5) {
          self.yourButton.imageView?.transform = .identity)
    
    }
    
    0 讨论(0)
提交回复
热议问题