WYPopoverController icon indicating copy to clipboard operation
WYPopoverController copied to clipboard

Blurred transparent background?

Open tkach opened this issue 10 years ago • 1 comments

Hi, @sammcewan ! Thanks for your work maintaining this awesome project. I wonder If it's possible to set blurred background to popover like it appears in iOS 7+ native popovers?

tkach avatar Oct 29 '14 15:10 tkach

I was able to make popover transparent with blue border with this theme configuration. But my arrow was still white. Hope it helps even it's not blurred.

WYPopoverTheme *theme = [WYPopoverTheme theme];
[theme setFillTopColor:[UIColor clearColor]];
[theme setFillBottomColor:[UIColor clearColor]];
[theme setOuterStrokeColor:[UIColor blueColor]];
[theme setInnerStrokeColor:[UIColor clearColor]];
theme.borderWidth = 2.0f;
_wyPopoverController.theme = theme;

josipbernat avatar Nov 07 '14 14:11 josipbernat