我一直在尝试创建简单的“基于块的动画”。我在这里使用一组图像“图像”。我使用了这种方法:
[UIView animateWithDuration:3.0
delay:0.0f
options:UIViewAnimationOptionAllowUserInteraction | UIViewAnimationOptionCurveLinear
animations:^{ imageview.animationImages = images; }
completion:nil];
但是,当我更改参数值animateWithDuration:
并且delay:
我想减慢动画速度时不会发生任何变化,但即使我将这些值更改为 20-30 也不会发生任何变化。请帮忙。