Created
May 30, 2016 07:33
-
-
Save phucnm/4bb915bcfe7933e211e234b49728f299 to your computer and use it in GitHub Desktop.
Present a viewcontroller with transparent background
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
| self.definesPresentationContext = YES; | |
| presentedController.view.backgroundColor = [YOUR_COLOR with alpha OR clearColor] | |
| presentedController.modalPresentationStyle = UIModalPresentationOverCurrentContext; | |
| [self presentViewController:presentedController animated:YES completion:nil]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment