我要翻轉,並使用動畫展開按鈕翻轉和規模擴大按鈕動畫
代碼:
[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:5.0];
[UIView setAnimationTransition:UIViewAnimationTransitionFlipFromRight forView:mybutton cache:YES];
[mybutton setFrame:CGRectMake(mybutton.frame.origin.x, mybutton.frame.origin.x, 200, 200)];
[UIView commitAnimations];
有這個動畫問題:
- 巴頓被翻轉,但它的半圓後擴大翻轉。
- 按鈕位置翻轉後不準確。
我該如何解決?
我需要的按鈕,翻轉,並在同一時間擴大。 示例:在iPad上打開iTunes,然後單擊一首歌曲。 – Houranis