UIStackview 左对齐

编程入门 行业动态 更新时间:2024-10-05 23:28:20
本文介绍了UIStackview 左对齐的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

限时送ChatGPT账号..

我正在尝试将 UIStackview 中的项目水平向左对齐.

I'm trying to align the items in UIStackview horizontally to the left.

无论如何可以以编程方式执行此操作吗?我试图通过故事板来做到这一点,但没有成功.出于某种原因, UIStackView 中的项目以自身为中心.

Is there anyway to do this programmatically? I tried to do this via storyboard but was not successful. For some reason, the items in the UIStackView centers itself.

推荐答案

如果使用 StackView 将轴属性设置为Horizo​​ntal",我认为您无法将其与左侧对齐.

If you use StackView setting axis property to "Horizontal", I think you can't align it to the left.

但是有一种方法可以让它在视觉上留下来.

But there is a way to make it left visually.

设置具有相等"关系的 StackView 前导约束使用大于或等于"设置 StackView 尾随约束

喜欢这个

stackView.leadingAnchor.constraint(equalTo: view.leadingAnchor).isActive = true
stackView.trailingAnchor.constraint(greaterThanOrEqualTo: view.trailingAnchor).isActive = true

这篇关于UIStackview 左对齐的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

更多推荐

[db:关键词]

本文发布于:2023-04-29 01:18:44,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1182596.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:UIStackview

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!