The title says it all really. I have a view controller connected to a button as a popover. The view controller's background color is grey, but the color of the arrow pointing to the button is white. Any help would be much appreciated.
Here's how I get around it:
popover = [[UIPopoverController alloc] initWithContentViewController:contentViewController];
popover.backgroundColor = contentViewController.view.backgroundColor;
This matches the popover to the color of the content's background.