Is it possible to present a popover without any sort of arrows pointing somewhere?

link|improve this question

68% accept rate
So you want a modal view controller? – KennyTM Aug 4 '10 at 7:38
Are you're suggesting that I use -presentModalViewController:animated:? That's extremely different from a UIPopover. It doesn't provide the same look and feel as a UIPopover, and you're limited to certain fixed dimensions. – David Liu Aug 4 '10 at 18:42
feedback

4 Answers

Yes it is possible just do:

 [self.popoverController presentPopoverFromBarButtonItem:anItem   
                                permittedArrowDirections:0
                                                animated:YES];

The zero represent no direction.

link|improve this answer
it works for me!!! thanks.. will apple accept this? ... by the way, is it posible to present a keyboard inside a popover, the way it looks on ipad passcode? stackoverflow.com/questions/3636560/… – Omer Sep 3 '10 at 14:10
Did apple accept it? – RyanJM Dec 17 '11 at 17:46
Yes Apple has accepted it – Matt Dec 29 '11 at 20:49
feedback

Set the permittedArrowDirections to 0.

permittedArrowDirections:0

Zero tells "NoDirection".

link|improve this answer
feedback

Nope, there is no UIPopoverArrowDirectionNone option, and UIPopoverArrowDirectionUnknown throws an exception i think if you try to use that to present.

Instead of a popover controller, you can call presentModalViewController:animated: and set the controller you are presenting to have a modal presentation style of UIModalPresentationFormSheet or perhaps UIModalPresentationPageSheet. Those are more traditional popup screens than popovers are.

link|improve this answer
2  
Unfortunately, presentModalViewController is limited to certain particular frame sizes, while popovers are not, unless I'm missing something. They also don't provide the same look and feel as a popover. – David Liu Aug 9 '10 at 19:55
That's correct. Unfortunately, if your requirements are strict you may have to roll your own popups to get what you want. – Kevlar Aug 9 '10 at 22:53
feedback

Try this , it works for me.

[self.popoverViewController presentPopoverFromRect:rect inView:self.view  permittedArrowDirections:0 animated:YES];
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.