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 初期表示でScrollViewがうまく動作しない

Posted at

#コードで記述したScrollViewの初期表示がうまく動作しない

この記事ではXcode 11.4 Swift 5.2を使用しています

  • 対処方法

    • ScrollViewの制約を記述する前にscrollView.translatesAutoresizingMaskIntoConstraints = falseを記述する
  • translatesAutoresizingMaskIntoConstraintsについて

    • AutoLayout以前に使われていた「Autosizing」というレイアウトの仕組みを、AutoLayoutに変換するかどうかを設定するフラグ(デフォルトはtrue)
    • Autosizingの制約とコンフリクトを起こすと期待通りの動作をしないことがあるので、新たに制約を追加する際には忘れずにfalseに設定する
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?