我有一個UIButton
使用下面的代碼推到另一個視圖控制器。我如何去將這個UIButton
放到導航控制器的頂部欄中。添加導航控制器的UIButton頂部欄,推到另一個視圖控制器
-(IBAction) nextButtonPressed {
TipsViewController *objYourViewController = [[TipsViewController alloc] initWithNibName:@"TipsViewController" bundle:nil];
[self.navigationController pushViewController:objYourViewController animated:YES];
[TipsViewController release];
}
我想添加類似的:self.navigationItem.rightBarButtonItem
地方,但不能找出語法。
下面是我嘗試使用以下代碼的其他內容:我可以在導航控制器的頂部欄中獲得「下一步」按鈕。我如何得到它推到另一個視圖控制器?
UIBarButtonItem *anotherButton = [[UIBarButtonItem alloc] initWithTitle:@"Next" style:UIBarButtonItemStylePlain target:self pushViewController:anotherButton animated:YES];
self.navigationItem.rightBarButtonItem = anotherButton;
[anotherButton release];
感謝您的任何幫助。