菜鸟教程小白 发表于 2022-12-12 14:38:46

ios - 如何制作这个网格布局


                                            <p><p>我需要这个网格布局,带有 Storyboard 的 View 结构。是不是更容易设置,还是我需要计算size/4,乘以index,计算中心X、Y坐标,每次旋转调整<code>NSLayoutConstraint</code>?</code> p>

<p> <a href="/image/VdaMH.png" rel="noreferrer noopener nofollow"><img src="/image/VdaMH.png" alt="enter image description here"/></a> </p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>您可以将 <code>UIStackView</code> 与默认垂直使用并在横向尺寸类中将其轴更改为水平,分布 <code>Fill-Equally</code></p>

<pre><code>override func viewWillTransition(to size: CGSize, with coordinator: UIViewControllerTransitionCoordinator) {

    if UIDevice.current.orientation == .portrait
    {
      self.stackV.axis = .vertical
    }
    else
    {            
      self.stackV.axis = .horizontal
    }

}
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 如何制作这个网格布局,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/49388345/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/49388345/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 如何制作这个网格布局