ChrisXu / CXAlertView

Custom alert-view which allow you to add view as main content.
MIT License
323 stars 81 forks source link

Frost background issue #27

Open antonioreyna opened 10 years ago

antonioreyna commented 10 years ago

Hello, I am showing this alert from a viewcontroller i pressented as modalview, but the frosted background is showing the root viewcontroller of the app, why?

thanks

antonioreyna commented 10 years ago

well a fast work around for this was to change the line 824 on CXAlertView file to:

self.blurView.blurSuperView = self.containerView;

instead of:

self.blurView.blurSuperView = self.oldKeyWindow.rootViewController.view;

I hope this doesn't mess with something else

:)