iOS UIView Animation Issue

后端 未结 1 1297
慢半拍i
慢半拍i 2021-01-24 04:51

I have an issue with a UIView animation when switching between pages in a UITabBarController.

A view in UIViewControllerA is playing the following animation:-



        
相关标签:
1条回答
  • 2021-01-24 05:46

    The answer is simple, reset the transform:

    self.animationImageView.transform = CGAffineTransformIdentity;
    
    0 讨论(0)
提交回复
热议问题