美文网首页
iOS 关于懒加载的页面动画进入后台后暂停

iOS 关于懒加载的页面动画进入后台后暂停

作者: 雪_晟 | 来源:发表于2017-07-06 18:04 被阅读385次

    对于 UITabarController管理的导航控制器的根界面,如果加入动画,你会发现,当应用退出到后台,然后进入到前台,你就会发现动画停止了。解决办法就是添加通知监听应用进入前台,进入活跃状态。

    
         [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(appDidEnterPlayground) name:UIApplicationDidBecomeActiveNotification object:nil];
    }
    -(void)appDidEnterPlayground{
        [self.heroBtn.layer removeAllAnimations];
         [self.heroBtn.layer addAnimation:[self groupAnimation] forKey:nil];
    }
    
    

    相关文章

      网友评论

          本文标题:iOS 关于懒加载的页面动画进入后台后暂停

          本文链接:https://www.haomeiwen.com/subject/nnfkhxtx.html