I just updated my Xcode to 11 and tried to run my app on a iOS 13 device. I discovered the View Controllers wasn't being presented in fullscreen, but I was able to fix this problem with this question: Presenting modal in iOS 13 fullscreen
But I also have an issue with Admob interstitial ads not being presented in fullscreen. I will attach a screenshot to demonstrate, and you will see the top isn't located at the top.
This is how I present the interstitial:
if (self.interstitial.isReady) {
[self.interstitial presentFromRootViewController:self];
}