Do you notice that if the call-in-progress or personal hotspot indicator bar is shown when you launch an app on a iPhone without a notch (i.e. iPhone 8, 8 Plus and earlier as of writing), the launch screen tends to be distorted? I've found that an easy fix is just to disable the status bar at launch with this in your Info.plist
:
<key>UIStatusBarHidden</key>
<true/>
Then enable it immediately in your app delegate:
application.isStatusBarHidden = false
Let me know if you know of any other trick to do this.
Your feedback is valuable: Do you want more nuggets like this? Yes or No
.
.