我想在完成动画后开始动画,因为我在 touchesBegan 函数中实现了以下代码
if(touch.view==word1)
{
[UIImageView animateWithDuration:0.6f
delay:0.0f
options:UIViewAnimationOptionCurveEaseOut
animations:^{
word1.alpha=1;
}
completion:^(BOOL finished){
if (finished) {
word1.alpha=0;
}
}];
}
它在第一次触摸时起作用,当我再次触摸它时它根本不起作用。谁能告诉我我做错了什么。
任何帮助将不胜感激。