0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Swift コードレイアウト時のステータスバーの高さ

Last updated at Posted at 2020-10-30

・記事を書く理由

コードレイアウトでステータスバーの高さを取得したかったが、出来ず、、、
ネットでやっと記事を見つけたが相当時間がかかったのでここに書くことにしました。

・やり方

SceneDelegate内にこのコードを書きます。
コメントアウトされてるところは除外してます。

SceneDelegate.swift

    import UIKit
    //ここ↓
    var statusHeight = CGFloat()

    class SceneDelegate: UIResponder, UIWindowSceneDelegate {

     var window: UIWindow?
     func scene(_ scene: UIScene, willConnectTo session:UISceneSession, options connectionOptions:UIScene.ConnectionOptions) {
        guard let _ = (scene as? UIWindowScene) else { return }
        //ここ↓
        statusHeight = window!.windowScene?.statusBarManager?.statusBarFrame.height ?? 0
    }

これで取得可能で他のSwiftファイルでも扱えます。
初学者の独学ですので、暖かい目で見てください。。

0
1
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
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?