我創建了一個視圖控制器數組,並將它們添加到UINavigation控制器,然後以模態方式呈現它們。導航控制器「後退按鈕」文本:模態地演示
但是,我不能將文本設置爲每個視圖中的「後退」按鈕,而不是單詞「後退」。
這是代碼:
//The View Controllers and Array
VC1 *vc1 = [[VC1 alloc] initWithNibName:@"VC1" bundle:nil];
VC2 *vc2 = [[VC2 alloc] initWithNibName:@"VC2" bundle:nil];
VC3 *vc3 = [[VC3 alloc] initWithNibName:@"VC3" bundle:nil];
NSArray * viewControllers = [NSArray arrayWithObjects:vc3, vc2, vc1, nil];
// Create the nav controller and set the view controllers.
UINavigationController* theNavController = [[UINavigationController alloc]
initWithRootViewController:vc3];
[theNavController setViewControllers:viewControllers animated:NO];
// Display the nav controller modally.
[self presentModalViewController:theNavController animated:YES];
我試圖在每一個VC的初始化以下內容:
UIBarButtonItem *barButton = [[UIBarButtonItem alloc] init];
barButton.title = @"Acknowledge Briefings Read";
self.navigationItem.backBarButtonItem = barButton;
...但它不工作。有任何想法嗎?非常感謝。
另外,相關的,我最好喜歡在「向前」的方向導航堆棧。這可能使用導航控制器嗎?
嗨,亞當,謝謝。你知道如何使用這種方法去導航控制器堆棧中的下一個視圖控制器嗎? – 2012-04-03 19:25:06