我在UIPageViewController中有一个按钮。我添加了动画(隐藏/显示)
一旦我通过点击其他按钮转到另一个控制器,然后我回到带有动画按钮的视图控制器,我再也无法点击任何按钮。
我试图删除按钮上的动画,一切正常,所以我猜这是动画,我遇到了问题。
这是按钮动画的代码:
CABasicAnimation *theAnimation;
theAnimation=[CABasicAnimation animationWithKeyPath:@"opacity"];
theAnimation.duration=1.0;
theAnimation.repeatCount=3;
theAnimation.autoreverses=YES;
theAnimation.fromValue=[NSNumber numberWithFloat:1.0];
theAnimation.toValue=[NSNumber numberWithFloat:0.0];
[helloGuestButton.layer addAnimation:theAnimation forKey:@"animateOpacity"];