我正在尝试从 UIView 子类中的一个子视图上执行动画。
动画持续时间忽略我尝试将其设置为的任何值,并且只执行约 2 秒的永久持续时间。finished
标志返回 True 。
[UIView animateWithDuration:0.5f animations:^{
img.frame = newFrame;
} completion:^(BOOL finished) {
NSLog(@"result: %d", finished);
}];
当我使用旧方式时,它工作正常:
[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:0.5f];
img.frame = newIconRectFinal;
[UIView commitAnimations];
可能是什么问题呢?