我想根据设备大小更改上述限制的长度,因此我的文本始终与屏幕顶部成比例的距离。
ios - 如何根据设备大小按比例改变NSConstraint的长度-LMLPHP

最佳答案

你可以通过增加屏幕高度和调整用户界面本身的乘数来实现顶部空间的比例。
它将自动调整顶部空间,而不做任何出口限制。

-> UIView

     -> UILabel (make hidden,for adjusting proportional top space)

         Constraints : top space - 8(default), width - 50(constant any value) , center horizantaly of parent UIView, equal height to parent UIView.
         Now modify your multipliers of proportional height to 0.2 (20% from your main view height) or 0.3(30 %).It will adjust based on screen size automatically.

     - > UILabel (Verification Code) Constraints : top space min 8 (default) & others...

ios - 如何根据设备大小按比例改变NSConstraint的长度-LMLPHP

关于ios - 如何根据设备大小按比例改变NSConstraint的长度,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/44774143/

10-14 23:15