I want to make a popup type of layer on the iPhone 4. Is that possible? Like in this screenshot:
Asked
Active
Viewed 842 times
2 Answers
2
On the iPad, you can use the built in UIPopoverController to achieve a very similar control. There is no built in control that shows like a popover in the iPhone. You will either have to create your own or use a different control.
There is an open source Popover for iPhone. I've never used it but I think it will fulfil your needs: https://github.com/werner77/WEPopover

Rog
- 17,070
- 9
- 50
- 73
-
The sample Application you have given is really suits as same as in ipad(uipopovercontroller)..Thank you – kanmani Mar 03 '11 at 10:28
-
yes, the only problem is that I have to make it for iphone 4 :( – PartySoft Mar 03 '11 at 15:15
-1
That’s a custom control. There’s a system pop-up control on the iPad called UIPopOverController
, but I don’t think it’s available on the iPhone. See also this previous question about popovers on iPhone.