Search code examples
uikitipaduipopovercontroller

UIPopover without any arrows


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


Solution

  • Yes it is possible just do:

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

    The zero represent no direction.