ios - 即时更改程序化/VFL 约束
<p><p>我正在手动将 subview 添加到 View 并使用约束对其进行定位...</p>
<pre><code>UIView *superview = self.view;
UIView *subview = self.subview;
NSDictionary *viewsDictionary = NSDictionaryOfVariableBindings(superview, subview);
-(0)-|" options:NSLayoutFormatAlignAllBaseline metrics:nil views:viewsDictionary]];
-(0)-|" options:NSLayoutFormatAlignAllBaseline metrics:nil views:viewsDictionary]];
</code></pre>
<p>这会将我的 subview 整齐地放置在 superView 中。但是,稍后我想在我的 subview (带有动画)周围应用一个边距,以便它被插入 100。所以实际上,我在视觉格式语言中的约束将是......</p>
<pre><code>"H:|-(100)--(100)-|"
"V:|-(100)--(100)-|"
</code></pre>
<p>如何将变量附加到我的“边距”值,以便在 subview 的两种显示类型之间进行转换? </p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><pre><code>-(0)-|" options:NSLayoutFormatAlignAllBaseline metrics:nil views:viewsDictionary]
</code></pre>
<p>将按照指定的顺序返回一个包含约束的数组,您可以在数组中查找它,然后更改其常量值。</p>
<p>但我认为最简单的方法是像这样创建对它的引用(您可以将其存储在内部变量或属性中):</p>
<pre><code>NSLayoutConstraint* space = [NSLayoutConstraint constraintWithItem:self.button1 attribute:NSLayoutAttributeRight
relatedBy:NSLayoutRelationEqual toItem:self.button2
attribute:NSLayoutAttributeLeft multiplier:1.0 constant:12.0];
</code></pre>
<p>并像这样添加它:</p>
<pre><code>];
</code></pre>
<p>然后您可以将 space.constant 更改为某个值。并像这样对其进行动画处理:</p>
<pre><code>[UIView animateWithDuration:1.0 animations:^{
// Make all constraint changes here
;}];
</code></pre>
<p>其他方法是删除所有约束并添加具有更新值的 VFL 约束,然后如上所述在动画 block 内执行 layoutIfNeeded。</p></p>
<p style="font-size: 20px;">关于ios - 即时更改程序化/VFL 约束,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/29171555/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/29171555/
</a>
</p>
页:
[1]