web-dev-qa-db-ja.com

iOSでプログラムでアスペクト比の制約を設定するにはどうすればよいですか?

View Controllerに自動レイアウトを使用しました。制約でV位置とH位置を設定しましたが、5s、6、6 Plusに変更されたときにボタンサイズを大きくするにはどうすればよいか知りたいです。これは、ログインボタンに制約を追加する方法です。

NSArray *btncon_V=[NSLayoutConstraint constraintsWithVisualFormat:@"V:[btnLogin(40)]" options:0 metrics:nil views:viewsDictionary];
[btnLogin addConstraints:btncon_V];

NSArray *btncon_POS_H=[NSLayoutConstraint constraintsWithVisualFormat:@"H:|-100-[btnLogin]-100-|" options:0 metrics:nil views:viewsDictionary];
[self.view addConstraints:btncon_POS_H];


NSArray *btncon_POS_V=[NSLayoutConstraint constraintsWithVisualFormat:@"V:|-70-[Title]-130-[lblFirst]-0-[lblSecond]-20-[textusername]-10-[txtpassword]-10-[btnLogin]" options:0 metrics:nil views:viewsDictionary];

[self.view addConstraints:btncon_POS_V];

しかし、私の問題は、左右のギャップを管理する一方で、高さが固定されているためiPhone 6および6 Plusで伸びていることです。画面サイズに応じてサイズを増やすにはどうすればよいですか?これはアスペクト比かもしれませんが、コードでアスペクト比の制約を設定するにはどうすればよいですか?

52
IRD

このような。一度お試しください。

[self.yourview setTranslatesAutoresizingMaskIntoConstraints:NO];
[self.yourview addConstraint:[NSLayoutConstraint
                                  constraintWithItem:self.yourview
                                  attribute:NSLayoutAttributeHeight
                                  relatedBy:NSLayoutRelationEqual
                                  toItem:self.yourview
                                  attribute:NSLayoutAttributeWidth
                                  multiplier:(self.yourview.frame.size.height / self.yourview.frame.size.width)
                                  constant:0]];

または(self.yourview.frame.size.height / self.yourview.frame.size.width)の代わりに、任意のfloat値を使用できます。ありがとう。

Swift 3.0-

self.yourview!.translatesAutoresizingMaskIntoConstraints = false
self.yourview!.addConstraint(NSLayoutConstraint(item: self.yourview!,
                                          attribute: NSLayoutAttribute.height,
                                          relatedBy: NSLayoutRelation.equal,
                                          toItem: self.yourview!,
                                          attribute: NSLayoutAttribute.width,
                                          multiplier: self.yourview.frame.size.height / self.yourview.frame.size.width,
                                          constant: 0))
69
Mahesh Agrawal

レイアウトアンカー は、制約をプログラムで設定する最も便利な方法です。

ボタンのアスペクト比を5:1に設定したい場合は、次を使用する必要があります。

button.heightAnchor.constraint(equalTo: button.widthAnchor, multiplier: 1.0/5.0).isActive = true

完全なコードは次のとおりです。

class ViewController: UIViewController {

    override func viewDidLoad() {
        super.viewDidLoad()

        let button = UIButton(type: .custom)
        button.setTitle("Login", for: .normal)
        button.backgroundColor = UIColor.darkGray

        self.view.addSubview(button)

        button.translatesAutoresizingMaskIntoConstraints = false

        let margins = view.layoutMarginsGuide

        button.leadingAnchor.constraint(equalTo: margins.leadingAnchor, constant: 20.0).isActive = true
        button.trailingAnchor.constraint(equalTo: margins.trailingAnchor, constant: -20.0).isActive = true
        button.bottomAnchor.constraint(equalTo: margins.bottomAnchor, constant: -20.0).isActive = true
        button.heightAnchor.constraint(equalTo: button.widthAnchor, multiplier: 1.0/5.0).isActive = true
    }

}

上記のコードで達成された結果を次に示します。ボタンがさまざまなデバイスで5:1のアスペクト比を維持していることがわかります。

Result view

48
Eugene Brusov

スウィフト3:

yourView.addConstraint(NSLayoutConstraint(item: yourView,
                                          attribute: .height,
                                          relatedBy: .equal,
                                          toItem: yourView,
                                          attribute: .width,
                                          multiplier: 9.0 / 16.0,
                                          constant: 0))
13
RNHTTR

Interface Builderでデザインタイムに「高さ制約」を設定できます。 「ビルド時に削除」をチェックするだけで、アプリが実行されるときに削除されます。

enter image description here その後、viewDidLoadメソッドなどで「アスペクト比」制約を追加できます。

「16:9」のXamain.iOSでは、次のようになります。

    this.ImageOfTheDay.AddConstraint(NSLayoutConstraint.Create(
            this.ImageOfTheDay,
            NSLayoutAttribute.Height,
            NSLayoutRelation.Equal,
            this.ImageOfTheDay,
            NSLayoutAttribute.Width,
            9.0f / 16.0f,
            0));

または、Mahesh Agrawalが言ったように:

    [self.ImageOfTheDay addConstraint:[NSLayoutConstraint
                              constraintWithItem:self.ImageOfTheDay
                              attribute:NSLayoutAttributeHeight
                              relatedBy:NSLayoutRelationEqual
                              toItem:self.ImageOfTheDay
                              attribute:NSLayoutAttributeWidth
                              multiplier:(9.0f / 16.0f)
                              constant:0]];
11
Zanael

上記のすべての答えを試してみましたが、うまくいきませんでした。これはSwift 3での私の解決策です。

let newConstraint = NSLayoutConstraint(item: yourView, attribute: .width, relatedBy: .equal, toItem: yourView, attribute: .height, multiplier: 560.0/315.0, constant: 0)
yourView.addConstraint(newConstraint)
NSLayoutConstraint.activate([newConstraint])  
NSLayoutConstraint.deactivate(yourView.constraints)
yourView.layoutIfNeeded()
3
tuandapen

UIViewのヘルパー拡張機能

extension UIView {

    func aspectRation(_ ratio: CGFloat) -> NSLayoutConstraint {

        return NSLayoutConstraint(item: self, attribute: .height, relatedBy: .equal, toItem: self, attribute: .width, multiplier: ratio, constant: 0)
    }
}

そして使用法は次のとおりです。

view.aspectRation(1.0/1.0).isActive = true

2
Michał Ziobro