Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 2nd, 2012  |  syntax: None  |  size: 0.28 KB  |  hits: 15  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. iOS - How to show a bar under navigation bar?
  2. - (IBAction)toggleToolbar {
  3.  if (toolbar.isInView)
  4.     [self hideToolbar];
  5.  else
  6.     [self showToolbar];
  7. }
  8.  
  9. - (void) hideToolbar {
  10. // implementation to hide the toolbar
  11. }
  12.  
  13. - (void) showToolbar {
  14. // implementation to show the toolbar
  15. }