iOS狀態列重疊問題以及如何隱藏狀態列
阿新 • • 發佈:2019-02-01
一、狀態列重疊問題
1、在info.plist中新增 View controller-based status bar appearance 項並且將Value設定成 NO 這樣狀態列就變成白字了。
2、在AppDelegate.m中加入下面的程式碼,判斷系統版本然後將window的frame下拉20個畫素
if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 7) { self.window.frame = CGRectMake(0,20,self.window.frame.size.width,self.window.frame.size.height-20); UIApplication *myApp = [UIApplication sharedApplication]; [myApp setStatusBarStyle: UIStatusBarStyleLightContent]; }
二、隱藏狀態列
找到Info.plist檔案
不但要在Info.plist中增加 Status bar is initially hidden一行,選擇為 YES,
還需增加 View controller-based status bar appearance 一行,選擇為 NO。