菜鸟教程小白 发表于 2022-12-12 15:40:05

ios - 动画后自动布局约束不起作用


                                            <p><div>
            <aside class="s-notice s-notice__info post-notice js-post-notice mb16"role="status">
      <div class="d-flex fd-column fw-nowrap">
            <div class="d-flex fw-nowrap">
                <div class="flex--item wmn0 fl1 lh-lg">
                  <div class="flex--item fl1 lh-lg">
                        <b>这个问题在这里已经有了答案</b>:
                        
                  <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>尝试使用尺寸限制作为导出。然后,您可以轻松更改这些约束的值。不建议在使用自动布局时修改框架。</p>

<p>声明一个属性:</p>

<pre><code>@property (strong, nonatomic) IBOutlet NSLayoutConstraint *heightConstraint;
</code></pre>

<p>在实现中:</p>

<pre><code>heightConstraint = self.view.frame.size.height;
</code></pre>

<p>这篇文章也可能会有所帮助:
<a href="https://stackoverflow.com/questions/19899323/autolayout-constraints-and-animation" rel="noreferrer noopener nofollow">AutoLayout, Constraints and Animation</a> </p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 动画后自动布局约束不起作用,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/31073005/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/31073005/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 动画后自动布局约束不起作用