Skip to content

Instantly share code, notes, and snippets.

@phucnm
Created May 30, 2016 07:33
Show Gist options
  • Select an option

  • Save phucnm/4bb915bcfe7933e211e234b49728f299 to your computer and use it in GitHub Desktop.

Select an option

Save phucnm/4bb915bcfe7933e211e234b49728f299 to your computer and use it in GitHub Desktop.
Present a viewcontroller with transparent background
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