Rightpoint / RZTransitions

A library of custom iOS View Controller Animations and Interactions.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

UIModalPresentationOverCurrentContext causes white screen

ijameelkhan opened this issue · comments

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.