cezarywojcik / CWPopup

CWPopup category to present popup view controllers
MIT License
289 stars 62 forks source link

Black blur background #24

Closed k06a closed 9 years ago

k06a commented 9 years ago

I am trying to make this: 2015-04-01 17 26 12

But I got this: 2015-04-01 17 26 42

I made backgroundColor of presented view to [UIColor clearColor] in storyboard. If it is white - I see no blur at all...

k06a commented 9 years ago

Any suggestion?

k06a commented 9 years ago

Following code solves my problem:

self.useBlurForPopup = YES;
UIViewController *controller = [self.storyboard instantiateViewControllerWithIdentifier:@"vc_mode"];
[self presentPopupViewController:controller animated:YES completion:nil];
controller.view.layer.shadowColor = [UIColor whiteColor].CGColor;