我想在我的视野中永远重复动画。以下是我的代码:
[UIView animateWithDuration:0.5f
delay:0.49f
options:UIViewAnimationOptionCurveEaseInOut
animations:^{
//for IMMERSE
[_pic2 setAlpha:1.0f];
_view1_immerse=_pic2.frame;
_view1_immerse.origin.x = ([UIScreen mainScreen].bounds.size.width-_view1_immerse.size.width)/2;
self.pic2.frame=_view1_immerse;
}
completion:^(BOOL finished){
[UIView animateWithDuration:0.5f delay:0.49f options:UIViewAnimationOptionCurveEaseOut animations:^{
_view1_immerse=_pic2.frame;
_view1_immerse.origin.x = [UIScreen mainScreen].bounds.size.width;
self.pic2.frame=_view1_immerse;
[_pic2 setAlpha:0.0];
} completion:^(BOOL finished){
[UIView animateWithDuration:0.0f animations:^{
_view1_immerse=_pic2.frame;
_view1_immerse.origin.x = -_view1_immerse.size.width;
self.pic2.frame=_view1_immerse;
}];
}];
}];
我尝试添加选项UIViewAnimationOptionRepeat
,但它似乎只重复了#34;动画"最外层的一部分。我想重复一整套动画。
我不想使用NSTimer
。
谁能给我一些关于我的问题的建议?提前谢谢!