ECG(ハートビートモニター)と同じように連続パルス効果を実現したい。現在、2 つのアニメーション ブロックを使用しています。
[UIView animateWithDuration: 2.0f delay: 0.0f options: UIViewAnimationOptionRepeat | UIViewAnimationOptionAllowUserInteraction | UIViewAnimationOptionTransitionNone | UIViewAnimationOptionOverrideInheritedDuration
animations:^{ [image1 setFrame:CGRectMake(0,200,320,70)];}
completion:^(BOOL finished){[image1 setFrame:CGRectMake(-320,200,320,70)];}];
[UIView animateWithDuration:2.0f delay:0.0f options:UIViewAnimationOptionRepeat | UIViewAnimationOptionAllowUserInteraction | UIViewAnimationOptionTransitionNone | UIViewAnimationOptionOverrideInheritedDuration
animations:^{ [image2 setFrame:CGRectMake(320,200,320,70)];}
completion:^(BOOL finished){[image2 setFrame:CGRectMake(0,200,320,70)];}];
[UIView setAnimationCurve:UIViewAnimationCurveLinear];
[UIView commitAnimations];
このアニメーションは終了後に繰り返しますが、もう一度見つめる前に少し間があります..その間の一時停止を取り除き、連続した滑らかなアニメーションを実現したい..
どんなヘップでも大歓迎です..
前もって感謝します..
UIViewAnimationCurveEaseInOut も試しましたが、まだ一時停止しています..