Is it possible to present a popover without any sort of arrows pointing somewhere?
I use popover to show menu depending on touch coordinate. In this case popover uses maximum height of self.view
CGRect popeverFrame = CGRectMake(touchPoint.x, touchPoint.y, 0, 0);
[self.popover presentPopoverFromRect:popeverFrame
inView:self.view
permittedArrowDirections:UIPopoverArrowDirectionAny
animated:YES];
But when I use 0-direction. Popover rectangle doesn't set it height to maximum and can only be set by appropriate property.
CGRect popeverFrame = CGRectMake(touchPoint.x, touchPoint.y, 0, 0);
[self.popover presentPopoverFromRect:popeverFrame
inView:self.view
permittedArrowDirections:UIPopoverArrowDirectionAny
animated:YES];
Hope this will help: Help with UIPopOverController size