我試圖通過animationWithDuration
和多個選項實現UIView
動畫塊。它工作正常,除了它似乎只使用我指定的選項之一而不是全部三個。我可以指定的選項數量有限制,還是限制某些選項組合?iOS UIView動畫(animationWithDuration :)有多個選項
以下是我的代碼。 「starRotator」是我旋轉的UIView
中的UIImageView
。我嘗試在括號中包裝選項,但那也不起作用。它似乎只採取UIViewAnimationOptionRepeat
選項,並忽略其他兩個。
[UIView animateWithDuration:30.0
delay:0.0
options:UIViewAnimationCurveLinear | UIViewAnimationOptionRepeat | UIViewAnimationOptionBeginFromCurrentState
animations:^{
starRotator.superview.transform = CGAffineTransformMakeRotation(M_PI);
}
completion:^(BOOL finished){ }
];
非常感謝!試圖弄清楚這件事,我一直在撞牆。它總是有助於擁有第二雙眼睛。 – Justine 2012-07-12 01:54:52