does anyone of you know how to make a box like this in xcode:
I saw a Box like this in many apps and now want to implent it into my Project!
Is there any Framework or somerhing for it?
Asked
Active
Viewed 613 times
-1

Anil Varghese
- 42,757
- 9
- 93
- 110

Yannick Krohn
- 1
- 1
-
2[what have you tried](http://whathaveyoutried.com)? Any book on iOS will give you the answer. – Ares Mar 25 '13 at 14:50
-
Essentially that's a UIPopoverController-lookalike for the iPhone. There are [many](http://stackoverflow.com/questions/6798550/uipopovercontroller-for-iphone) [many](http://stackoverflow.com/questions/3987218/uipopover-for-iphone-or-is-it-fake) [existing](http://stackoverflow.com/questions/6742283/how-to-implement-uipopover-kind-of-functionality-in-iphone) [questions](http://stackoverflow.com/questions/6742283/how-to-implement-uipopover-kind-of-functionality-in-iphone) that give options on how to do this. – tc. Mar 28 '13 at 03:47
3 Answers
1
There are custom controls available in cocoa controls

Anil Varghese
- 42,757
- 9
- 93
- 110
-
-
@YannickKrohn If you prefer the Github link to FPPopover: https://github.com/50pixels/FPPopover – Mike D Mar 25 '13 at 15:04
0
you can use a custom popoverController which is made for iPhone http://code4app.com/ios/Popover-View-in-iPhone/4fa931bd06f6e78d0f000000

Cheng Guo
- 55
- 3
0
You can probably achieve it without using any library. Take a look at this basic tutorial: http://www.edumobile.org/iphone/ipad-development/presenting-a-popover-in-ipad/

Eli
- 14,779
- 5
- 59
- 77