Search code examples
iosswiftios13

How to change background color of modal presentation ios13?


In iOS 13 we have new modal presentation behavior like this:

enter image description here

How to change background .black color?


Solution

  • That color is the background color of your window. So, assuming that you have a reference to it, the example below:

    window?.backgroundColor = UIColor.red
    

    would produce:

    enter image description here