Created
April 6, 2016 12:56
-
-
Save ardarda/5989811eda2b4a45c44e93d9b2581667 to your computer and use it in GitHub Desktop.
transparent modal view controller presentation on ios
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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