Reputation: 11734
Just starting out with iOS developing in Swift so I'm not certain how to call this thing.
What I'm trying to accomplish is a choice like the image below.
What is it called and where do I start?
Upvotes: 0
Views: 1174
Reputation: 6592
UIActionSheet is what you are searching for.
Be careful because it's deprecated since iOS 8 but the reference links to the replacement as well.
in iOS 8 and later, instead use UIAlertController with a preferredStyle of UIAlertControllerStyleActionSheet.
Upvotes: 2