0

我正在使用基於導航的應用程序。我正在使用push pop來切換視圖。但是當我想要使用當前的模型視圖控制器來滑動視圖..然後推彈出不能正常工作? 如何上傳我的視圖/當前的模型視圖不能與uinavigation控制器一起使用

+0

如果需要一些幫助,請發佈一些代碼。恐怕你不會得到任何這樣的 – visakh7 2011-04-06 09:12:51

+1

請張貼一些代碼示例如何推送和彈出視圖控制器在堆棧上。如果你不接受答案,其他成員可能會失去動力回答你的問題。 – GorillaPatch 2011-04-06 09:14:15

回答

2

你必須使用navigationController實例而不是View裏面。

[self.navigationController presentModalViewController:proView animated:YES];

-1

如果我沒有弄錯,現在的模式查看器不能與導航控制器組合。本模式的觀衆建立做你想要什麼,而推/ pop方法給出了一個簡單的導航控制器創建的...

+0

它可以組合。 – jini 2011-04-25 15:29:39

0

這可能有助於...

Custom Animation for Pushing a UIViewController

只是實現自定義動畫如:

_view.frame = CGRectMake(0, 480, _view.frame.size.width, _view.frame.size.height); 
[UIView beginAnimations:nil context:nil]; 
[UIView setAnimationDuration:0.5]; 
[UIView setAnimationDelegate:self]; 

_view.frame = CGRectMake(0, 0, _view.frame.size.width, _view.frame.size.height); 

[UIView commitAnimations]; 
相關問題