Skip to content

Instantly share code, notes, and snippets.

@ardarda
Created April 6, 2016 12:56
Show Gist options
  • Select an option

  • Save ardarda/5989811eda2b4a45c44e93d9b2581667 to your computer and use it in GitHub Desktop.

Select an option

Save ardarda/5989811eda2b4a45c44e93d9b2581667 to your computer and use it in GitHub Desktop.
transparent modal view controller presentation on ios
UIViewController *walkThru = [self.storyboard instantiateViewControllerWithIdentifier:@"WalkThroughScene"];
walkThru.providesPresentationContextTransitionStyle = YES;
walkThru.definesPresentationContext = YES;
[walkThru setModalPresentationStyle:UIModalPresentationOverCurrentContext];
[self.navigationController presentViewController:walkThru animated:YES completion:nil];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment