Ethan Lane
Ethan Lane

Reputation: 27

How do I create an iOS7 style popup menu in Xcode?

Does anyone know how to create a popup menu like the one seen in the mail app on iOS7 which lets you reply, reply all, forward and print? I have been researching it but can't find an answer. I am still quite new to Xcode.

Upvotes: 2

Views: 3350

Answers (1)

WDUK
WDUK

Reputation: 19030

You are after the UIActionSheet. This is a control found within all versions of iOS, but has recently been re-skined for iOS7.

Update: UIActionSheet was deprecated in iOS 8, and instead you should use UIAlertController with the style of actionSheet

Upvotes: 4

Related Questions