0

我有一个应用程序在使用大约 30-35 分钟后会降低整个操作系统的速度。滞后是渐进的,我可以看到它随着时间的推移而增加,因为我一遍又一遍地重复相同的操作。这是一个音乐应用程序,在播放大约 15-20 首曲目后,延迟令人难以忍受。

在 UIScrollView 中滚动项目时,帧速率下降到 10 以下。很多帧被跳过并且 UI 几乎锁定。如果我在应用程序后台运行,我会在 SpringBoard 中的操作系统中看到这种滞后,基本上无处不在。在 SpringBoard 中滚动应用程序图标变得不连贯。解锁的幻灯片变得不稳定,等等。

我将如何解决这个问题?可能是什么原因。由于代码库相当复杂,我无法削减代码以创建最小的可重现示例。我需要帮助来了解可能导致操作系统几乎锁定的原因。这不是死锁,因为 UI 仍然响应,只是需要很长时间。

哪些分析工具可以帮助阐明此问题的原因?我怀疑这可能是因为内存泄漏,但令人惊讶的是操作系统没有向应用程序发送内存警告,所以我也不完全确定。

任何帮助是极大的赞赏。

4

2 回答 2

2

问题在于动画的建立。活动监视器在调试此问题时最有用。Springboard 的 CPU 使用率不断上升,直到达到 100%。所以时间显然没有花在我的应用程序上,而是在 Springboard 中的渲染服务器上。

我创建了两个具有大量重复次数的动画,让它们永远运行。然后我将每个动画添加到一个单独的层。为了创建动画,我使用了惰性检查,并使用给定键向图层询问任何现有动画。如果图层什么也没返回,我就创建了动画。问题是图层总是什么都不返回,所以我一直在创建这些永远重复的动画。

这是有问题的代码。

// This call always returned nil.
CABasicAnimation *innerRotationAnimation = (CABasicAnimation *)[self.spinnerViewInner.layer animationForKey:@"rotationAnimation"];

// So I kept on creating animations and piling them up.
if (innerRotationAnimation == nil)
{
    CATransform3D innerRotationTransform = CATransform3DMakeRotation(0.25f * M_PI * -1, 0, 0, 1.0);
    innerRotationAnimation = [CABasicAnimation animationWithKeyPath:@"transform"];
    innerRotationAnimation.toValue = [NSValue valueWithCATransform3D:innerRotationTransform];
    innerRotationAnimation.duration = 0.25f;
    innerRotationAnimation.cumulative = YES;
    innerRotationAnimation.repeatCount = HUGE_VALF;
    [self.spinnerViewInner.layer addAnimation:innerRotationAnimation forKey:@"rotationAnimation"];
}

为了解决这个问题,我开始删除现有的动画。我可以在两个点上做到这一点,无论是在animationDidStop:finished:回调中,还是在我的setAnimating:方法中,都可以正常工作。这是setAnimating:方法的变化。

- (void)setAnimating:(BOOL)animating
{
    if (animating == NO) {
        // Remove all existing animations now.
        [self.layer removeAllAnimations];
    }
    else {
        CABasicAnimation *animation = // Create animation;
        [self.layer addAnimation:animation forKey:@"rotationAnimation"];
    }
}

如果有人感兴趣,这是原始的BROKEN代码。

- (void)setAnimating:(BOOL)animating
{
    if (self.isAnimating == animating)
    {
        return;
    }

    _animating = animating;

    if (self.isAnimating == YES)
    {
        CABasicAnimation *innerRotationAnimation = (CABasicAnimation *)[self.spinnerViewInner.layer animationForKey:@"rotationAnimation"];
        CABasicAnimation *outerRotationAnimation = (CABasicAnimation *)[self.spinnerViewOuter.layer animationForKey:@"rotationAnimation"];

        if (innerRotationAnimation == nil)
        {
            CATransform3D innerRotationTransform = CATransform3DMakeRotation(0.25f * M_PI * -1, 0, 0, 1.0);
            innerRotationAnimation = [CABasicAnimation animationWithKeyPath:@"transform"];
            innerRotationAnimation.toValue = [NSValue valueWithCATransform3D:innerRotationTransform];
            innerRotationAnimation.duration = 0.25f;
            innerRotationAnimation.cumulative = YES;
            innerRotationAnimation.repeatCount = HUGE_VALF;
            [self.spinnerViewInner.layer addAnimation:innerRotationAnimation forKey:@"rotationAnimation"];
        }
        if (outerRotationAnimation == nil)
        {
            CATransform3D outerRotationTransform = CATransform3DMakeRotation(0.25f * M_PI * -1, 0, 0, -1.0);
            outerRotationAnimation = [CABasicAnimation animationWithKeyPath:@"transform"];
            outerRotationAnimation.toValue = [NSValue valueWithCATransform3D:outerRotationTransform];
            outerRotationAnimation.duration = 0.25f;
            outerRotationAnimation.cumulative = YES;
            outerRotationAnimation.repeatCount = HUGE_VALF;
            [self.spinnerViewOuter.layer addAnimation:outerRotationAnimation forKey:@"rotationAnimation"];
        }
    }
}

- (void)animationDidStop:(CAAnimation *)theAnimation finished:(BOOL)flag
{
    self.spinnerViewInner.layer.opacity = (self.isAnimating ? 1.0 : 0.0);
    self.spinnerViewOuter.layer.opacity = (self.isAnimating ? 1.0 : 0.0);
}

不过,有一件事我仍然很好奇。由于给定键只能有一个活动动画,当我尝试添加具有相同键的新动画时,Core Animation 不应该删除我现有的动画吗?为什么又animationForKey:回来nil了。

于 2012-11-25T21:29:48.660 回答
1

使用仪器找出发生了什么。线程的失控产卵?内存泄漏?请参阅https://developer.apple.com/library/ios/#documentation/DeveloperTools/Conceptual/InstrumentsUserGuide/Introduction/Introduction.html

于 2012-11-21T20:11:06.537 回答