Reputation: 19507
Is it possible to present a popovercontroller without an direction arrow:
UIPopoverArrowDirection
Upvotes: 2
Views: 1030
Reputation: 5123
Use this
[self.popoverController presentPopoverFromRect:CGRectMake(440.0, 80.0, 150.0, 140.0) inView:self.view permittedArrowDirections:0 animated:YES];
Upvotes: 1
Reputation: 45158
Actually, you can, or at least could, (I am not sure if the trick still works in the latest SDK ) just pass 0
Upvotes: 5