- iOS - How to show a bar under navigation bar?
- - (IBAction)toggleToolbar {
- if (toolbar.isInView)
- [self hideToolbar];
- else
- [self showToolbar];
- }
- - (void) hideToolbar {
- // implementation to hide the toolbar
- }
- - (void) showToolbar {
- // implementation to show the toolbar
- }