Created
March 7, 2011 08:15
-
-
Save rhysforyou/858215 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @interface RootViewController : UITableViewController { | |
| IBOutlet UIToolbar *toolBar; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| - (void)viewWillAppear:(BOOL)animated { | |
| [super viewWillAppear:animated]; | |
| // Tell navigationController that we want to show it's toolbar | |
| [self.navigationController setToolbarHidden:NO]; | |
| // Now set it's toolbar items to the ones set in our interface file | |
| [self setToolbarItems:toolBar.items]; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment