我要翻转,并使用动画展开按钮翻转和规模扩大按钮动画
代码:
[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