视图结构为:TabBarController-> UINavigationController-> UIViewController。该视图显示AdMob插页式广告。
在广告展示之前,它看起来像这样
广告显示并关闭后,看起来像这样
广告被关闭后没有任何事
func interstitialDidDismissScreen(_ ad: GADInterstitial) {
}
我试图刷新状态栏和导航栏,但不起作用。
顺便说一句,这不会在iPhone X,Xs,Xr,Xs Max上发生。按下另一个标签栏项目后,状态栏将恢复正常。我终于发现在实际设备上似乎没有这种问题。
答案 0 :(得分:0)
将此代码添加到您的viewcontroller
override func viewDidAppear(_ animated: Bool) {
super.viewDidAppear(animated)
self.setNeedsStatusBarAppearanceUpdate()
}