Reputation: 27
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
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