我需要製作一個將從右側進入的動畫,顯示新視圖。UIView視圖之間的動畫過渡
[UIView beginAnimations:nil context:nil];
[UIView setAnimationCurve:UIViewAnimationCurveEaseInOut];
[UIView setAnimationDelay:.5f];
[UIView setAnimationDuration:0.5f];
// display view controller
[UIView commitAnimations];
我應該在這裏添加什麼?
提供更多詳細信息... – iProgrammer
如何讓另一個視圖從右側滑入? –