gpt4 book ai didi

ios - 如何在 iOS 中更改 View 的顶部填充?

转载 作者:行者123 更新时间:2023-11-29 03:16:06 26 4
gpt4 key购买 nike

我想在切换按钮时将 View 的顶部填充更改为 80。这将如何完成?基本上我希望 View 顶部和文本之间有 80 的空间。

最佳答案

如果您使用自动布局,那么最简单的事情就是为文本和 View 顶部之间的距离创建约束。您可以在代码中将其连接到 NSLayoutConstraint,并在按下按钮时将constraint.constant 设置为新值。

@property (nonatomic, weak) IBOutlet NSLayoutConstraint *paddingConstraint;


// Somewhere after the button press
self.paddingConstraint.constant = 80;

哦,您可能需要通过调用此来更新布局 -

[self layoutIfNeeded];

关于ios - 如何在 iOS 中更改 View 的顶部填充?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21687210/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com