al.one
al.one

Reputation: 111

Make Popups With Cocoa Touch

I'm trying to make a popup like in "Camera+" or "Tweetbot" (like this one : Tweetbot or this one Camera+). How can I do this ?

Upvotes: 4

Views: 1113

Answers (3)

akashivskyy
akashivskyy

Reputation: 45170

There's similar question here: iPhone popup menu like iPad popover?.

There is a solution. It's called WEPopover and you can download it from github.

Upvotes: 2

Suhail Patel
Suhail Patel

Reputation: 13694

That component is generally called a Popover or a Callout. Apple provides you with an Implementation on the iPad (UIPopover) but not on the iPhone.

There are a few Libraries which attempts to solve this and creates similar popovers like the ones you've shown. With a bit of customisation you can get it to look like this ones you've linked. Below is a list of the ones i've found so far:

Upvotes: 8

Related Questions