Reputation: 1198
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...
Upvotes: 0
Views: 130
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:
Upvotes: 1
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