How can i implement this popup menu in iphone app like a popover in ipad?

EDIT: This is the best at moment: https://github.com/runway20/PopoverView

|
How can i implement this popup menu in iphone app like a popover in ipad?
EDIT: This is the best at moment: https://github.com/runway20/PopoverView
|
|||||||
|
|
Have a look at the iPhone UIPopoverController implementation: WEPopover |
|||
|
On iPhone you would generally use a UIActionSheet for a stack of buttons like that. It slides up from the bottom, rather than popping up next to the button, but that's the standard behavior on iPhone. |
|||||||||||||
|
|
You would have to manually instantiate a UIView using a custom background image or drawing with transparency, add some UIButtons (or other type of custom view) on top, and also somehow handle all touches outside that view. Note that is is non-standard UI. An actionsheet would be more HIG compliant. |
|||
|
|
|
There is one that is even better than WEPopover. Developed by a company called 50pixels, it is called FPPopover. You can download FPPopover at https://github.com/50pixels/FPPopover |
|||
|
|
The screenshot above is not a UIActionSheet. It looks like a simple UIView subclass with custom UIButtons on top of it. So go ahead and create the subclass according to your needs and then add it as a subview to your view every time you need it. |
|||
|
|