Created
May 22, 2017 12:13
-
-
Save yojkim/ec58044d00b970c70b95e4d5ef2225ec to your computer and use it in GitHub Desktop.
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
// Objective-C , iOS 8 이상 | |
TestViewController* vc = [[TestViewController alloc] init]; | |
vc.providesPresentationContextTransitionStyle = YES; | |
vc.definesPresentationContext = YES; | |
[vc setModalPresentationStyle:UIModalPresentationOverCurrentContext]; | |
[self.navigationController presentViewController:vc animated:NOcompletion:nil]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment