Xcodeインターフェイスビルダーconstraint
をプログラムでインストールおよびアンインストールする方法はありますか?
Ctrlキーを押しながら制約をクリックしてNSLayoutConstraintのIBOutletを接続し、viewControllerにドラッグします(例:@property (weak, nonatomic) IBOutlet NSLayoutConstraint *constraint;
)。
制約を削除する場合:
[self.view removeConstraint:constraint]
制約をインストールする場合:
[self.view addConstraint:constraint]