1

我最近遇到了我的应用程序的问题。

我通常使用

[UIView animateWithDuration:(NSTimeInterval) animations:^{...} completion:^(BOOL finished) {...}];

制作我的动画,直到现在它都运行良好。这是我的问题代码

UIImageView *someimage = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"someimage"]];
[someimage setFrame:CGRectMake(0, 0, 200, 200)];
[self.view addSubView:someimage];
[UIView animateWithDuration:0.5 animations:^{
    [someimage setFrame:CGRectMake(400, 400, 200, 200)];
} completion:^(BOOL finished) {
    NSLog(@"Just finish moving some image lets rotate it!");
    [UIView animateWithDuration:0.5 animations:^{
        someimage.transform = CGAffineTransformMakeRotation(M_PI);
    } completion:^(BOOL finished) {
        NSLog(@"What just happened?");
    }];
}];

我得到了一张图片,我使用动画将它从一个角落移动到另一个位置。然后,当动画完成时,我旋转它,但是当我进行旋转时, UIImageView 再次出现在角落。

有人能解释一下为什么会发生这种情况以及如何处理吗?

谢谢!

4

1 回答 1

3

UIView 类参考说:

警告 如果变换属性不是恒等变换,则该属性的值是未定义的,因此应该被忽略。

同时更改视图(或图层)的框架及其变换无法按预期工作。相反,更改视图的中心属性。

于 2014-06-12T14:46:21.927 回答