LoginSignup
20
12

More than 5 years have passed since last update.

[iOS]ステータスバーの高さ、ナビゲーションバーの高さを取得

Posted at

Objective-C

// ステータスバーの高さを取得する
float statusBarHeight = [[UIApplication sharedApplication] statusBarFrame].size.height;
// ナビゲーションバーの高さを取得する
float navigationBarHeight = self.navigationController.navigationBar.frame.size.height;

Swift

// ステータスバーの高さを取得する
let statusBarHeight = UIApplication.shared.statusBarFrame.size.height
// ナビゲーションバーの高さを取得する
let navigationBarHeight = self.navigationController?.navigationBar.frame.size.height
20
12
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
20
12