缩放时,UIImageView向下/向右跳跃

时间:2013-12-03 21:43:40

标签: ios objective-c xcode uiimageview xcode5.0.1

我正试图从其中心扩展UIImageView。中心规模有效,但我有问题!当我触摸图像时,它会在缩放时向下/向右跳跃。

这是我的代码:

[UIView animateWithDuration:0.5
                          delay:1
                        options:UIViewAnimationOptionBeginFromCurrentState
                     animations:(void (^)(void)) ^{
                        elefant.transform = CGAffineTransformMakeScale(1.5, 1.5);
                     }
                     completion:^(BOOL finished){
                         //elefant.transform=CGAffineTransformIdentity;
                     }];

注意:当我显示此UIImageView的大小检查器时,原点有一个从左上角向下和向右的箭头。我试图建立这个中心,但它没有帮助。

希望在这里找到帮助,并提前感谢。

/特勒尔斯

1 个答案:

答案 0 :(得分:0)

要解决这个问题,我不得不关闭自动布局。