How to add leading padding to view added inside an UIStackView(如何将前导填充添加到 UIStackView 中添加的视图)
问题描述
这是我的设置:我有一个 UIScrollView
,其前导、顶部、试验边缘设置为 0.在其中我添加了一个具有以下约束的 UIStackView
:
This is my setup: I have an UIScrollView
with leading,top, trialing edge set to 0. Inside this I add an UIStackView
with this constraints:
stackView.centerYAnchor.constraintEqualToAnchor(selectedContactsScrollView.centerYAnchor).active = true
stackView.leadingAnchor.constraintEqualToAnchor(selectedContactsScrollView.leadingAnchor).active = true
在堆栈视图中,我添加了一些视图.
我的问题是,由于限制,添加到堆栈视图的第一个视图也将具有前沿 = 0.
Inside the stack view I add some views.
My issue is that because of the constraints the first view added to stack view will also have leading edge = 0.
我可以通过哪些方式向第一个视图添加一些填充?无需调整滚动视图约束.
What are the ways that I could add some padding to the first view ? Without adjusting the scroll view constraints.
推荐答案
您提供的解决方案不会为您的 UIStackView 中的视图添加填充(正如您在问题中所希望的那样),但它为UIStackView.
The solution you have provided doesn't add a padding for your views inside your UIStackView (as you wanted in the question), but it adds a leading for the UIStackView.
一种解决方案可能是在原始 UIStackView 中添加另一个 UIStackView,并为这个新的 UIStackVIew 提供引导.然后,将您的视图添加到这个新的 UIStackView.
A solution could be to add another UIStackView inside your original UIStackView and give the leading to this new UIStackVIew. Then, add your views to this new UIStackView.
提示,您可以使用 Interface Builder 完全做到这一点.换句话说,不需要为它写代码.
Hint, you can do that completely using Interface Builder. In other words, no need to write code for it.
这篇关于如何将前导填充添加到 UIStackView 中添加的视图的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何将前导填充添加到 UIStackView 中添加的视图
- 使用自定义动画时在 iOS9 上忽略 edgesForExtendedLayout 2022-01-01
- Android - 拆分 Drawable 2022-01-01
- Android - 我如何找出用户有多少未读电子邮件? 2022-01-01
- android 4中的android RadioButton问题 2022-01-01
- MalformedJsonException:在第1行第1列路径中使用JsonReader.setLenient(True)接受格式错误的JSON 2022-01-01
- 用 Swift 实现 UITextFieldDelegate 2022-01-01
- 在测试浓缩咖啡时,Android设备不会在屏幕上启动活动 2022-01-01
- 如何检查发送到 Android 应用程序的 Firebase 消息的传递状态? 2022-01-01
- 想使用ViewPager,无法识别android.support.*? 2022-01-01
- Android viewpager检测滑动超出范围 2022-01-01