請我已經在做,從一個視圖到另一個去時,翻轉動畫的問題,我解釋一下: 我發現在這個網址教程:http://www.youtube.com/watch?v=Rgnt3auoNw0 這說明我該怎麼辦在這個教程中添加視圖但是方法和礦井wasn`t一樣,雖然我試圖把他在我的IBAction爲使用的代碼,所以我的IBAction爲看起來像這樣:從視圖導航,查看時進行翻轉動畫
-(IBAction)goToRechercherView{
[UIView beginAnimations:@"flipview" context:nil];
[UIView setAnimationDuration:2];
[UIView setAnimationCurve:UIViewAnimationCurveEaseInOut];
[UIView setAnimationTransition:UIViewAnimationTransitionFlipFromLeft
forView:self.view cache:YES];
[self presentModalViewController:rechercherViewController animated:YES];
[UIView commitAnimations];
}
喜歡我的應用程序的構建成功,但沒有過渡,當我從我的視野導航,我已經puted的iBAction,請幫助,thx提前:)
它看起來並不像你展示它之前創建rechercherViewController。 – adamweeks 2011-03-25 14:27:25
嗨,實際上我沒有創建它作爲一個類,除了在我的主視圖的.h我已經導入它:#import「RechercherViewController.h」,我已經instancied它:IBOutlet RechercherViewController * rechercherViewController – Malloc 2011-03-25 14:31:07