iOS get status bar and navigation bar size (width and height)

Source: Internet
Author: User

In iphone development, it is sometimes necessary to get the status bar and navigation bar height and width information to facilitate layout of other controls. Here's how to get this information:

    Status bar (StatusBar)      cgrect rectstatus = [[UIApplication sharedapplication] statusbarframe];      NSLog (@ "Status width-%f", rectStatus.size.width); Width      NSLog (@ "Status height-%f", rectStatus.size.height);   Height            //navigation bar (Navigationbar)      cgrect rectnav = self.navigationController.navigationBar.frame;      NSLog (@ "nav width-%f", rectNav.size.width); Width      NSLog (@ "nav height-%f", rectNav.size.height);   Height  


The printing results are as follows:

    2015-01-14 13:22:22.206 app_name[226:60b] status width-320.000000      2015-01-14 13:22:22.209 app_name[226:60b] Status height-20.000000      2015-01-14 13:22:22.210 app_name[226:60b] nav width-320.000000      2015-01-14 13:22:22.211 app_name[226:60b] Nav height-44.000000  

iOS get status bar and navigation bar size (width and height)

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

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.