1

I want to create a drop up menu like this.

enter image description here

But I have no clue what it is called, so I can't look for it.

And by the way, are there others methods to create such a "more option"-menu? I know there is the UIPickerView, but if i have only 2 or 3 buttons to choose from it is fairly unnecessary to implement a whole pickview.

Thanks in advance!

Amar
  • 13,202
  • 7
  • 53
  • 71
Gustl007
  • 245
  • 1
  • 2
  • 12

2 Answers2

1

David Wong is right, you always can use UIActionSheet for iOS 7 style drop menu, but if you want to use some cool custom controllers here's the list:

Drop menus

Modal (cool ones)

But if you're just starting your journey of iOS development, you better stick with UIActionSheet.

Good luck!

Community
  • 1
  • 1
Vlad Z.
  • 3,401
  • 3
  • 32
  • 60
  • Oh wow thanks! One question: If i use these (the custom ones) in apps which i like to put on the app store, will Apple confirm these or the UIActionSheet only? – Gustl007 Oct 22 '13 at 15:25
  • Yeah, Apple review board will surely will confirm these custom elements to App Store, I'm using almost all of these in my apps that already in App Store. – Vlad Z. Oct 22 '13 at 18:37
0

That's a UIActionSheet

Just adds buttons and use the various show methods to bring it up. Don't forget to set the delegate to handle which button gets pressed.

Community
  • 1
  • 1
David Wong
  • 10,284
  • 3
  • 39
  • 34