制約を使用するのはこれが初めての試みなので、初歩的な質問をお許しください。
サブビューがビューの幅またはビューの幅の 75% 未満になるように、一連の制約を設定できるようにしたいと考えています。したがって、サブビューの幅がビューの幅の 75% を超える場合は、それを全幅に設定します。subView が iPhone と iPad で適切に表示されるようにするために、これを行いたいと考えています。
これは制約を使用して可能ですか? 2 つの制約を設定しましたが、ビューの幅に基づいてどちらを選択するかを制約システムに伝えるにはどうすればよいですか?
// Ensure it's width is either the less than 3 quarters of the page width or the full page width (including the gutter margins)
NSLayoutConstraint *constraint = [NSLayoutConstraint constraintWithItem:view attribute:NSLayoutAttributeWidth relatedBy:NSLayoutRelationLessThanOrEqual toItem:self attribute:NSLayoutAttributeWidth multiplier:0.75 constant:0];
[self.constraints addObject:constraint];
constraint = [NSLayoutConstraint constraintWithItem:view attribute:NSLayoutAttributeWidth relatedBy:NSLayoutRelationEqual toItem:self attribute:NSLayoutAttributeWidth multiplier:1.0 constant:0];
[self.constraints addObject:constraint];
// Add the constraints to the page
[self addConstraints:self.constraints];
かなり行き詰まっているので、どんな助けも大歓迎です。
デイブ