Is it possible for UIStackView to scroll?(UIStackView 可以滚动吗?)
问题描述
假设我在 UIStackView 中添加了更多可以显示的视图,如何使 UIStackView
滚动?
Let's say I have added more views in UIStackView which can be displayed, how I can make the UIStackView
scroll?
推荐答案
如果有人在寻找无需代码的解决方案,我在情节提要中创建了一个示例来完全做到这一点,使用自动布局.
In case anyone is looking for a solution without code, I created an example to do this completely in the storyboard, using Auto Layout.
您可以从 github 获取它.
基本上,重新创建示例(用于垂直滚动):
Basically, to recreate the example (for vertical scrolling):
- 创建一个
UIScrollView
,并设置其约束. - 在
UIScrollView
中添加一个 - 设置约束:
Leading
、Trailing
、Top
&Bottom
应该等于UIScrollView
中的那些 - 在
UIStackView
和UIScrollView
之间设置相等的Width
约束. - 在
UIStackView
上设置Axis = Vertical,Alignment = Fill,Distribution = Equal Spacing,Spacing = 0 - 在
UIStackView
中添加多个 - 运行
UIStackView
UIViews
- Create a
UIScrollView
, and set its constraints. - Add a
UIStackView
to theUIScrollView
- Set the constraints:
Leading
,Trailing
,Top
&Bottom
should be equal to the ones fromUIScrollView
- Set up an equal
Width
constraint between theUIStackView
andUIScrollView
. - Set Axis = Vertical, Alignment = Fill, Distribution = Equal Spacing, and Spacing = 0 on the
UIStackView
- Add a number of
UIViews
to theUIStackView
- Run
将步骤4中的Width
换成Height
,并在步骤5中设置Axis
= Horizontal
,得到一个水平的 UIStackView.
Exchange Width
for Height
in step 4, and set Axis
= Horizontal
in step 5, to get a horizontal UIStackView.
这篇关于UIStackView 可以滚动吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:UIStackView 可以滚动吗?


- 使用自定义动画时在 iOS9 上忽略 edgesForExtendedLayout 2022-01-01
- 用 Swift 实现 UITextFieldDelegate 2022-01-01
- 如何检查发送到 Android 应用程序的 Firebase 消息的传递状态? 2022-01-01
- Android - 拆分 Drawable 2022-01-01
- android 4中的android RadioButton问题 2022-01-01
- Android - 我如何找出用户有多少未读电子邮件? 2022-01-01
- MalformedJsonException:在第1行第1列路径中使用JsonReader.setLenient(True)接受格式错误的JSON 2022-01-01
- 想使用ViewPager,无法识别android.support.*? 2022-01-01
- Android viewpager检测滑动超出范围 2022-01-01
- 在测试浓缩咖啡时,Android设备不会在屏幕上启动活动 2022-01-01