如何使视图可滚动 - 视图包含带有标签和图像的堆栈?
How to make the View scrollable - View contain a stack with labels and image?
second image here我创建了一个 UIViewController
,其中包含 4 个 UILabels
和一个 UIImageView
,嵌入在 UIStackView
中。当我在第二个标签中添加文本时,标签的长度增加并超出了安全区域。我尝试输入 UIScrollView
但它不起作用。
Here是我的Storyboard截图
[更新图片查看已添加]
截至目前,根据您的屏幕截图,您的视图层次结构如下:
|-Scroll View
|---Content Layout Guide
|---Frame Layout Guide.
|-Stack View
|---Some content
.
.
.
|
您可以将 Stack View
拖到 Scroll View
中,这样层次结构如下所示
|-Scroll View
|---Stack View <---------------- Drag your stackview inside scroll view
|------Some content
|---Content Layout Guide
|---Frame Layout Guide.
.
.
.
|
second image here我创建了一个 UIViewController
,其中包含 4 个 UILabels
和一个 UIImageView
,嵌入在 UIStackView
中。当我在第二个标签中添加文本时,标签的长度增加并超出了安全区域。我尝试输入 UIScrollView
但它不起作用。
Here是我的Storyboard截图 [更新图片查看已添加]
截至目前,根据您的屏幕截图,您的视图层次结构如下:
|-Scroll View
|---Content Layout Guide
|---Frame Layout Guide.
|-Stack View
|---Some content
.
.
.
|
您可以将 Stack View
拖到 Scroll View
中,这样层次结构如下所示
|-Scroll View
|---Stack View <---------------- Drag your stackview inside scroll view
|------Some content
|---Content Layout Guide
|---Frame Layout Guide.
.
.
.
|