LoginSignup
2
0

More than 5 years have passed since last update.

Swift4.2 でのHome Indicatorの非表示

Posted at

prefersHomeIndicatorAutoHiddenがメソッドからプロパティになったようです。

4.2以前

    @available(iOS 11, *)
    override func prefersHomeIndicatorAutoHidden() -> Bool {
        return true
    }

4.2

    @available(iOS 11, *)
    override var prefersHomeIndicatorAutoHidden: Bool {
        get {
            return true
        }
    }
2
0
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
2
0