我正在使用UIView animateWithDuration:delay:options:animations:completion:
方法,但永远不会调用完成方法。这是我的代码:
[UIView animateWithDuration:1 delay:0 options:UIViewAnimationOptionAllowUserInteraction animations:^
{
//random lines of code
}completion:^(BOOL finished){
if (finished)
{
NSLog(@"FINISHED");
}
}];
编辑:当我在animations:
注释掉这些行时,它会被调用??? !!!
这些是:
CGFloat objectY = object.frame.origin.y;
objectY += speed;
object.frame = CGRectMake(object.frame.origin.x, objectY, 75, 75);
答案 0 :(得分:1)
我正在猜测 - 您想要为连续手势的动作制作动画吗? 如果是,则动画永远不会因用户交互而结束。
只是更新框架,没有UIView动画。应该工作得很好。