2011-05-16 136 views
0

我正在編寫此代碼以將圖像從左向右移動,並且它工作正常。 但是,現在我想從右到左這樣做。動畫或從右向左移動圖像

[UIView animateWithDuration:20.0 
delay:0.0 
options: UIViewAnimationOptionAllowUserInteraction + UIViewAnimationOptionRepeat +UIViewAnimationOptionCurveLinear 
animations:^{imageView.frame = CGRectMake(x, 0, 12000, 768); 
} 
completion:nil]; 

請幫我一把。 謝謝。

回答

1

更改您的圖像視圖框架的X座標

使用下面

[UIView animateWithDuration:20.0 
delay:0.0 
options: UIViewAnimationOptionAllowUserInteraction + UIViewAnimationOptionRepeat +UIViewAnimationOptionCurveLinear 
animations:^{imageView.frame = CGRectMake(0, 0, 12000, 768); 
} 
completion:nil]; 
+2

趣味提示:您還可以CGRects如下:(的CGRect){origin.x = 0,.size.width = 12000,.size.height = 768} whee! – 2011-05-16 07:04:49

+0

@Andrew Pouliot:我已經在我的回答中提到了相同的CGRect :) – Jhaliya 2011-05-16 07:09:35

+0

我只是一個C99粉絲,沒關係。 – 2011-05-16 09:16:06

相關問題