Skip to content

Instantly share code, notes, and snippets.

@wannyk
Created July 31, 2015 05:20
Show Gist options
  • Save wannyk/6e531b52b249ed2f57cf to your computer and use it in GitHub Desktop.
Save wannyk/6e531b52b249ed2f57cf to your computer and use it in GitHub Desktop.
StatusBarAndNavBarHeight
CGFloat StatusBarAndNavBarHeight(UINavigationController *navController)
{
CGSize statusBarSize = [[UIApplication sharedApplication] statusBarFrame].size;
return navController.navigationBar.frame.size.height+MIN(statusBarSize.width, statusBarSize.height);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment