是否可以仅为具有小屏幕的iPhone隐藏我的应用的状态栏?感谢
答案 0 :(得分:0)
iPhone 5,5S和SE的屏幕宽度为320.在AppDelegate
中,您可以执行以下操作:
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {
if UIScreen.main.bounds.width == 320 {
application.isStatusBarHidden = true
}
return true
}
转到info.plist并添加新值:
View controller-based status bar appearance
将值设置为NO
。现在,iPhone 5,5S和SE将隐藏状态栏。