Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am making an iPad app, and am wondering it is possible to get the pop down menu from a UINavigationBar without having to go through the trouble of a split view controller. Is this possible? Tell me if I'm not being specific enough.

share|improve this question

1 Answer

up vote 1 down vote accepted

Yes, you can do that without much trouble, but you just have to write the code. Just display a UIPopoverController from that UIBarButtonItem on your navBar.

The steps:

  • Create a UIViewController which manages a table view (or whatever else you want) as your menu view controller.

  • Add a UIBarButtonItem to your nav bar or toolbar.

  • Create an IBAction to called something like touchedMenuButton.

  • Connect that action to that UIBarButtonItem.

  • In that method, alloc/init that view controller.

  • alloc/init a UIPopoverController with that view controller.

  • present that popover from the UIBarButton item

  • Success!
share|improve this answer
Thanks, I'll try that out! – Jumhyn Feb 5 '11 at 3:31
Worked perfectly, thanks! – Jumhyn Feb 5 '11 at 4:27

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.