UIModalPresentationOverCurrentContext causes white screen
ijameelkhan opened this issue · 0 comments
ijameelkhan commented
When using UIModalPresentationOverCurrentContext as model presentation style (because i want view as see through) causes a white screen on dismissal. Here is my code.
'
[vc setTransitioningDelegate:[RZTransitionsManager shared]];
[vc setModalPresentationStyle:UIModalPresentationOverCurrentContext];
[self presentViewController:vc animated:YES completion:NULL];
'
if i remove
' [vc setModalPresentationStyle:UIModalPresentationOverCurrentContext];' all works fine as expected.