UIImageViewを次のようにアニメーション化しています。
int timerAnimation = 0.0f;
for (UIImageView* img in imageArray) {
timerAnimation = timerAnimation + 1.0f;
[UIView animateWithDuration:1.0f
delay:timerAnimation
options:UIViewAnimationOptionCurveEaseIn
animations:^(void) {
img.frame = CGRectMake(20, img.frame.origin.y, 710, 60);
}
completion:NULL];
遅延時間を短縮したいのですが、1.0未満の値を入れると、
例えば
timerAnimation + 0.5f;
次に、すべてのオブジェクトは、遅延がないかのように、保存時に移動します。どうしてこれなの?