I want to implement this on my app. I want to search for tutorials on this topic but I don’t know what its called. Can someone please tell me what its called? Eg. In the photos app in iPhone, when u click on the left most button at the bottom, a screen pops up from the bottom giving you options to either email image, set as wallpaper etc.. So, once again, what is this called? Thanks
Share
That is a
UIActionSheet. Check out the UIActionSheet Class Reference.Basically you create one with the designated initializer
-initWithTitle:delegate:cancelButtonTitle:destructiveButtonTitle:otherButtonTitles:then send the-showInView:message to display it. You’ll have to set yourself as it’s delegate in order to handle selections made by the user.