Cocoa Auto Layout Guideによると、視覚的制約形式の言語でダッシュを使用して、「標準のAquaスペースを表す」ことができます。
[self addConstraints:[NSLayoutConstraint constraintsWithVisualFormat:@"[a]-[b]"
options:0
metrics:nil
views:viewDict]];
ただし、ビジュアル形式の言語を使用せずNSLayout...
に制約を作成している場合、同じことを実行できる定数またはメソッドを見つけることができないようです。
[self addConstraint:[NSLayoutConstraint constraintWithItem:a
attribute:NSLayoutAttributeTrailing
relatedBy:NSLayoutRelationEqual
toItem:b
attribute:NSLayoutAttributeLeading
multiplier:1.0f
constant:<# ??? #>]];
そのような状況でアクアスペースを定義するために使用できる定数(または別の値またはメソッド)はありますか?