Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Any pull down or drop down menu for iOS?

Tags:

In my iOS app, I need to use pull down or drop down menu. I do not want to use action sheet or picker view.

Is there any pull down or drop down menu for iOS?

Thanks.

like image 885
user403015 Avatar asked Dec 06 '11 13:12

user403015


People also ask

What is the drop-down menu called on iOS?

Open Control Center On an iPhone with Face ID: Swipe down from the top-right edge. To close Control Center, swipe up from the bottom. On an iPhone with a Home button: Swipe up from the bottom.

How do you get to the drop-down menu on a Mac?

On a Mac, you MUST use the Mouse to click in the name field, which opens the full drop-down menu. You can mouse-click on the drop-down first, THEN use the Arrow Keys to move through the options, but you also have to press "Return" for it to accept the change and THEN will update the preview.

What is iOS menu?

iOS Menu helps you to easily get a shell on your iOS devices and interact with them from the command line, by simply typing "ssh <device name>" or "sftp <device name>". iOS Menu is the replacement of iPhone Menu, which has been deprecated since the early 2015 release of the Monarch SDK.


2 Answers

No, there is no such thing within the iOS SDK and that is for a good reason - those elements are just not pretty, funky and usable well enough when acting on a touch display.

Consider using UIPickerView or UISegmentedControl instead.

But if you insist, check sites like Cocoa Controls for some derivates. Some of them are actually well done.


Ages later, things have changed - mostly due to the vastly increased screen estate. We now have UIMenu.

like image 102
Till Avatar answered Oct 17 '22 02:10

Till


You may want to check the PullableView view discussed here

This is a sample image with a pullable view from the top, bottom, and left side. The one at the bottom is open already.

sample app

like image 26
Sergio Avatar answered Oct 17 '22 02:10

Sergio