iOS 隱藏狀態列,ios隱藏狀態列

來源:互聯網
上載者:User

iOS 隱藏狀態列,ios隱藏狀態列

當系統版本號碼高於iOS7.0,那麼原來的隱藏狀態列方式就可能不好使了. 因為你要是用修改plist的方法實現的隱藏方法,還是管用的.

plist方法:key:Status bar is initially hidden    value : YES   自從開啟程式,狀態列就被隱藏了key:View controller-based status bar appearance  value : YES   進入程式後,狀態列被隱藏.(也就是歡迎畫面 Default.png 時候顯示狀態列)  代碼方法:代碼方法的缺點就是,不能隱藏歡迎畫面的狀態列.因為開啟歡迎畫面的時候,appDelegate還沒有執行 didFinishLaunching.優點是,可以在指定的ViewController裡面顯示狀態列,只需把代碼的YES改為NO 
 1 - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { 2     // Override point for customization after application launch. 3     if ([UIDevice currentDevice].systemVersion.floatValue < 7.0) { 4         [UIApplication sharedApplication].statusBarHidden = YES; 5     } 6     else if ([self respondsToSelector:@selector(setNeedsStatusBarAppearanceUpdate)]) 7     { 8         // iOS7及以上 9         [self prefersStatusBarHidden];10         //這個是更新狀態列的顯示狀態,只支援iOS7及以上,使用performSelector是為了不影響主線程的其他工作11         [self performSelector:@selector(setNeedsStatusBarAppearanceUpdate)];12     }13     return YES;14 }15 16 - (BOOL)prefersStatusBarHidden17 {18     return YES;//隱藏為YES,顯示為NO19 }

 

  

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.