Is there a way to make the UIPopOver transparent (alpha = 0.75 or so). Unfortunately there is no alpha property for UIPopOver. I need to present a popover so that the view b
There is currently no property to set the alpha of a UIPopoverController.
UIPopoverController
If you do: popoverController.contentViewController.view.alpha = 0.5;
popoverController.contentViewController.view.alpha = 0.5;
The inside view & content will be transparant and not the UIPopoverController itself.
Related question