Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save hamsternik/421def4a36727052bb238d60c655750f to your computer and use it in GitHub Desktop.
Save hamsternik/421def4a36727052bb238d60c655750f to your computer and use it in GitHub Desktop.
Show VC as Modal OverCurrentContext.
SomeModalViewController *vc = [self.storyboard instantiateViewControllerWithIdentifier:@"SomeModalViewControllerID"];
vc.providesPresentationContextTransitionStyle = YES;
vc.definesPresentationContext = YES;
vc.modalTransitionStyle = UIModalTransitionStyleCrossDissolve;
vc.modalPresentationStyle = UIModalPresentationOverCurrentContext; // UIModalPresentationPopover
[self presentViewController:vc animated:YES completion:nil];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment