In an iPad app I\'m writing I have button in a static table cell that launches an image picker inside a popover.
I want the popover\'s arrow to point at the button that
The button is likely not a direct subview of self.view.
self.view
Try:
[_popover presentPopoverFromRect:self.theButton.frame inView:self.theButton.superview permittedArrowDirections:UIPopoverArrowDirectionAny animated:YES];