You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
self.blurView.blurRadius = 4.95;
self.blurView.dynamic = YES;
self.blurView.contentMode = UIViewContentModeRight;
self.blurView.layer.contentsGravity = kCAGravityBottomLeft;
[self.blurView setClipsToBounds:YES];
[self.blurView updateAsynchronously:YES completion:^{
//Whatever you want
}];
When push , pop and present the ViewControllers distortions are occurring, and when blur effect used for views in the uiscrollView, while scrolling distortions are occurring.
How to resolve these distortions.
Please give suggestions
The text was updated successfully, but these errors were encountered:
Try to use [FXBlurView setUpdatesDisabled] or [FXBlurView setUpdatesEnabled] in ViewWill-DidAppear o Disappear to avoid that blur effect be update in any viewcontrollers transitions.
Hi .
i am using the below code for Blur effect,
self.blurView.blurRadius = 4.95;
self.blurView.dynamic = YES;
self.blurView.contentMode = UIViewContentModeRight;
self.blurView.layer.contentsGravity = kCAGravityBottomLeft;
[self.blurView setClipsToBounds:YES];
[self.blurView updateAsynchronously:YES completion:^{
//Whatever you want
}];
When push , pop and present the ViewControllers distortions are occurring, and when blur effect used for views in the uiscrollView, while scrolling distortions are occurring.
How to resolve these distortions.
Please give suggestions
The text was updated successfully, but these errors were encountered: