本文介绍了如何在iOS,Swift中更改底部布局约束的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我的滚动视图为@IBOutlet

I have scroll view as @IBOutlet

@IBOutlet weak var mainScrollView: UIScrollView!

我想更改

"Bottom space to: Bottom Layout Guide"

以编程方式进行约束.

First Item : Bottom Layout Guide.Top
Relation : Equal
Second Item: Scroll View.Bottom
Constant: 0 -> 50 // (I want to change this programmatically)
Priority: 1000
Multiplier: 1

我该怎么做?

推荐答案

将约束作为NSLayoutConstraintIBOutlet.

设置约束出口,并通过以下方式更改constant的值:

Set the constraint outlets and change constant value by :

self.sampleConstraint.constant = 20
self.view.layoutIfNeeded()

这篇关于如何在iOS,Swift中更改底部布局约束的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-02 07:14