2014-01-22 44 views
-1

我想用UIImageview做一個縮放動畫,但是當使用這個動畫塊時,圖像視圖會在動畫之前稍稍移動。代碼我使用:我想在UIImageview中做一個縮放動畫,但是我收到了一個意想不到的行爲

[UIView animateWithDuration:1.0 
         delay:0 
        options:UIViewAnimationOptionBeginFromCurrentState 
       animations:(void (^)(void)) ^{ 

       imgLogoImage.transform=CGAffineTransformMakeScale(1.03, 1.03); 

       } 
       completion:^(BOOL finished){ 
        imgLogoImage.transform=CGAffineTransformIdentity; 

       }]; 
+0

可能的重複[如何正確縮放UIImageViewView與UIView animateWithDuration?](http://stackoverflow.com/questions/7081076/how-to-scale-uiimageview-properly-with-uiview-animatewithduration) – Shai

回答

0

也許這是由您的比例因子太小引起的,特別是當經縮放的大小爲相對長的時間(1秒)相對較小。

相關問題