adam0101
adam0101

Reputation: 1198

What is this UI Element?

Is this a built in UI Element? I see it used in the address book, mail app, and other 3rd party apps but I can't find the object in Xcode anywhere... What am I?

Upvotes: 0

Views: 130

Answers (2)

Sage Washabaugh
Sage Washabaugh

Reputation: 297

This is called a UIActionSheet you usually use it to present a user with a set of options for an action. You can use it to warn a user about a potentially dangerous task such as deleting something like a photo. you can read more about it here:

http://developer.apple.com/library/ios/#documentation/uikit/reference/UIActionSheet_Class/Reference/Reference.html

Upvotes: 1

MarkPowell
MarkPowell

Reputation: 16540

That is a UIActionSheet. Basically, it's intended to replace what would be commonly accomplished with a Combo Box in a traditional setting.

Upvotes: 3

Related Questions