可能这只是正确语法的问题。
我使用animateWithDuration:delay:options:animations:completion:
UIView 方法。
这options:
是有问题的部分:当我只分配一个选项(例如UIViewAnimationOptionCurveEaseInOut)时,一切正常。
如果我想为同一个动画分配多个选项怎么办?我怎样才能做到这一点?
我尝试了以下代码,但options:
结果证明该部分被完全忽略:
> [UIView animateWithDuration:DURATION
> delay:DELAY
> options:(UIViewAnimationOptionAllowUserInteraction,
> UIViewAnimationOptionCurveEaseInOut)
> animations: ^{/*animations here*/}
> completion: ^(BOOL finished){/*actions on complete*/}];
这只是一次尝试,但没有奏效。我应该在这里使用哪种语法?
感谢您提前提供任何帮助。