OStack程序员社区-中国程序员成长平台

标题: objective-c - iOS 模拟器运行动画的效率会降低吗? [打印本页]

作者: 菜鸟教程小白    时间: 2022-12-12 23:55
标题: objective-c - iOS 模拟器运行动画的效率会降低吗?

我一直在玩一些动画,碰巧我附近没有可以测试的设备。我有一个简单的云在天空中移动的动画。使用此方法对云进行动画处理:

-(void)animateLayerCALayer*)layer toPositionCGPoint)position withDurationCGFloat)duration{
    // Prepare the animation from the current position to the new position
    CABasicAnimation *animation = [CABasicAnimation animationWithKeyPath"position"];

    animation.fromValue = [layer valueForKey"position"];
    animation.toValue = [NSValue valueWithCGPoint:position];
    animation.delegate = self;

    animation.duration = duration;

    [animation setValue:layer forKey"cloudLayer"];

    // Update the layer's position so that the layer doesn't snap back when the animation completes.
    layer.position = position;

    // Add the animation, overriding the implicit animation.
    [layer addAnimation:animation forKey"position"];
}

图层包含一个简单的部分透明图像。但是,当我运行它时,cpu 利用率比我在 MacBook Air 上预期的要高得多。有什么我做的效率低吗?还是模拟器只是在动画等某些任务上消耗大量资源?



Best Answer-推荐答案


有区别。但在大多数系统上,实际上是有好处的。事情往往在计算机上运行得更好,因为改进的 RAM 和 CPU 速度实际上使事情变得更好。除非您的 RAM 高于 2 GB,否则 Macbook Air 可能不会大幅提升性能。

Wifi 也是如此,如果您有一台插入以太网的计算机,那么互联网的运行速度会比正常速度快。在开发时牢记这一点是很好的,尤其是在开发游戏时。

编辑

正如 Minthos 所指出的,OpenGL 可能无法正常工作。但是,我无法验证这一点,因为我不使用 OpenGL 开发东西。但是,我之前的观点在其他情况下仍然有效。简单的 Cocos2D 动画应该更喜欢模拟器。

关于objective-c - iOS 模拟器运行动画的效率会降低吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13766270/






欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) Powered by Discuz! X3.4