Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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 ?

like image 522
al.one Avatar asked Dec 27 '22 14:12

al.one


2 Answers

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:

  • WEPopover
  • CMPopTipView
  • PopupView
like image 148
Suhail Patel Avatar answered Dec 30 '22 04:12

Suhail Patel


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.

like image 31
akashivskyy Avatar answered Dec 30 '22 02:12

akashivskyy