-3

I working with swift and how to how to present modal view controller but his background to be transparent. Content of other view controller to be visible in back.

Nik
  • 1,517
  • 5
  • 14
  • 19

1 Answers1

0

This one works for me :

self.presentingViewController.providesPresentationContextTransitionStyle = YES;
self.presentingViewController.definesPresentationContext = YES;
modal.modalPresentationStyle = UIModalPresentationOverCurrentContext;
Miknash
  • 7,888
  • 3
  • 34
  • 46