• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

ios - Core Animation 在应用重新出现时停止动画

[复制链接]
菜鸟教程小白 发表于 2022-12-13 05:00:10 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

我使用 CABasicAnimation 为我的菜单创建了动画。下面是我与此问题相关的代码:

- (void) viewDidLoad {
  ...
  [self setAwesomeMenu];
}

- (void)setAwesomeMenu {
  ...
  //set tag for awesomemenu subview
  [menu setTag:awesomeMenuSubViewTag];

  [self addPulseFilterSubView];
}

- (void) addPulseFilterSubView {
// add pulseEffectFilter subview
  UIImageView *pulseEffectFilter = [[UIImageView alloc] initWithImage:[UIImage imageNamed"pulse.png"]];
  [self.view insertSubview:pulseEffectFilter belowSubview:[self.view viewWithTag:awesomeMenuSubViewTag]];

  pulseEffectFilter.center = CGPointMake(160.0, 205.0);

  CABasicAnimation *theAnimation;
  theAnimation=[CABasicAnimation animationWithKeyPath"transform.scale"];
  theAnimation.duration=2.0;
  theAnimation.repeatCount=HUGE_VALL;
  //theAnimation.autoreverses=YES;
  theAnimation.fromValue=[NSNumber numberWithFloat:0.0];
  theAnimation.toValue=[NSNumber numberWithFloat:1.3];
  [pulseEffectFilter.layer addAnimation:theAnimation forKey"transform.scale"];
  theAnimation.removedOnCompletion = NO; // doesn't help

  CABasicAnimation *fadeOutAnimation;
  fadeOutAnimation = [CABasicAnimation animationWithKeyPath"opacity"];
  fadeOutAnimation.fromValue = [NSNumber numberWithFloat:1.2];
  fadeOutAnimation.toValue = [NSNumber numberWithFloat:0.0];
  fadeOutAnimation.duration = 1.0;
  fadeOutAnimation.repeatCount=HUGE_VALL;
  [pulseEffectFilter.layer addAnimation:fadeOutAnimation forKey"opacity"];
  //fadeOutAnimation.autoreverses = YES;
  fadeOutAnimation.removedOnCompletion = NO; //doesn't help

  [pulseEffectFilter setTag:pulseEffectFilterSubViewTag];
}

当我第一次调用这个 View 时,动画效果很好。当这个应用程序从手机暂停中重新出现时,动画也可以正常工作。 但是当我切换到另一个应用程序时,或者换句话说,离开这个应用程序,然后重新进入这个应用程序,动画就被卡住了。我找到了一个 article谈论这个。他们声称可以通过在 CABasicAnimation 类上设置一个名为 removedOnCompletion 的标志来解决这个问题。不幸的是,在我的情况下它不起作用。有谁知道解决方案?提前致谢。



Best Answer-推荐答案


好的,我已经测试了您的代码并找到了修复方法。在您的应用委托(delegate)中添加以下内容:

- (void)applicationDidBecomeActiveUIApplication *)application {
    [[NSNotificationCenter defaultCenter] postNotificationName"resumeAnimation" object:nil];
    // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.
}

然后添加一个 bool 值来跟踪动画是否开启并注册通知(在您的 View 类中):

BOOL animationActive = NO;

@interface ViewController ()

@end

@implementation ViewController

- (void) viewDidLoad {

    [[NSNotificationCenter defaultCenter] addObserver:self selectorselector(addPulseFilterSubView) name"resumeAnimation" object:nil];

    [self setAwesomeMenu];
}

然后在 addPulseFilterSubView 的开始检查我们是否需要停止之前的动画:

- (void) addPulseFilterSubView {

    if (animationActive) {
        for (UIView * view in self.view.subviews) {
            if (view.tag ==pulseEffectFilterSubViewTag) {
                [view removeFromSuperview];
            }
        }
    }
    // add pulseEffectFilter subview
    UIImageView *pulseEffectFilter = [[UIImageView alloc] initWithImage:[UIImage imageNamed"pulse.png"]];
    [self.view insertSubview:pulseEffectFilter belowSubview:[self.view viewWithTag:awesomeMenuSubViewTag]];
...

然后在这个方法的最后:

    animationActive = YES;
}

一切都应该很好

关于ios - Core Animation 在应用重新出现时停止动画,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28110606/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap