Josh Sherick
Josh Sherick

Reputation: 2161

In iphone what is the element called that slides up from the bottom of the screen with multiple choices?

In iphone what is the element called that slides up from the bottom of the screen with multiple choices?

Sometimes it is used to confirm a delete, sometimes it provides options for sharing. It has multiple buttons stretching across the width screen, and when it rolls up it dims the rest of the screen.

Upvotes: 2

Views: 1207

Answers (4)

msgambel
msgambel

Reputation: 7340

Edit: I think you are referring to a UIActionSheet. There are many examples online of how to use this, and the documentation can be found here. You could also mean a UIAlertView. The documentation for that can be found here. Hope that helps!

Upvotes: 0

Drew C
Drew C

Reputation: 6458

That's a UIActionSheet. The documentation for it is here.

Upvotes: 2

PDXGene
PDXGene

Reputation: 151

Actually, I think you're asking about UIActionSheet

Upvotes: 1

Karoly S
Karoly S

Reputation: 3258

Its called a UIActionSheet.

Here is an implementation example:

http://ykyuen.wordpress.com/2010/04/14/iphone-uiactionsheet-example/

Upvotes: 1

Related Questions