0
我有一個導航欄隱藏的導航應用程序,但我仍然需要一個自定義後退按鈕到第一個視圖。我的代碼很大程度上基於this example中的答案,這是一旦我的back
按鈕被用戶按下時執行的代碼。UINavigationController的自定義後退按鈕沒有導航欄和動畫在正確的方向
CreateViewController *createViewController = [[CreateViewController alloc] initWithNibName:@"CreateViewController" bundle:nil];
[self.navigationController pushViewController:createViewController animated:YES];
[createViewController release];
這是行不通的,但我不知道這是正確的方式來做到這一點。這個代碼的一個問題是新視圖從右側進入屏幕。所以即使它是一個back
按鈕,看起來好像它是一個新的視圖出現。
任何更好的方法來做到這一點,並修復動畫方向?