I recently upgraded all my iOS devices to iOS 13.3 and I noticed something that looks like a display glitch.
Every time I move from one VC to another using presentViewController, I am able to see the VC stack, for some reason.
Here is the code I am using:
let productsViewController = ProductsVC(productsArray: self.productsArray)
self.present(productsViewController, animated:true, completion:nil)
As you can see, on iOS 12 or older, there is no problem. And unfortunately this happens on all of my apps. Also, there is no error / warning and I am not sure what to look at / for.
Any ideas?