1

我在 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"];
4

0 回答 0