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.

プログラムで制約を作成する時の注意点

Posted at

#結論
translatesAutoresizingMaskIntoConstraintsfalseにすることです!

#制約のコード
以下の様にコードでviewの制約を設定するとします。
このままだと、立ち上げても反映されていません。

   let margins = view.layoutMarginsGuide
        redView.leadingAnchor.constraint(equalTo: margins.leadingAnchor).isActive = true
        redView.trailingAnchor.constraint(equalTo: margins.trailingAnchor).isActive = true
        redView.heightAnchor.constraint(equalTo: redView.widthAnchor, multiplier: 2.0).isActive = true

そこでtranslatesAutoresizingMaskIntoConstraintsfalseであるコードを書きます。

   redView.translatesAutoresizingMaskIntoConstraints = false
        let margins = view.layoutMarginsGuide
        redView.leadingAnchor.constraint(equalTo: margins.leadingAnchor).isActive = true
        redView.trailingAnchor.constraint(equalTo: margins.trailingAnchor).isActive = true
        redView.heightAnchor.constraint(equalTo: redView.widthAnchor, multiplier: 2.0).isActive = true

こうすることで実装できるそうです。
#translatesAutoresizingMaskIntoConstraintsとは
Auto Layout以前に使われていたAutoresizingMaskのレイアウトの仕組みをAuto Layoutに変更するかを設定するものだそうです。
translatesAutoresizingMaskIntoConstraintsを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?