ScrollView
使用
- 将
scroll view
加入 scene。 - 使用 constraints 像普通自动布局一样确定
scroll view
的 size 和 position - 添加一个
view
到scroll view
。将view
的 Xcode specific label 设置成Content View
. - 将
Content View
的 top, bottom, leading, 和 trailing 的 edges 紧贴scroll view
. (Content View
现在就是scroll view
的内容区域)
切记
Content View
现在还没有确切的 size. 它可水平或垂直延展,去适应放置在它其中的所有视图。
- (Optional) 如要禁止水平滚动,只需将
Content View
的 width 设置成跟scroll view
一样. - (Optional) 如要禁止垂直滚动,只需将
Content View
的height 设置成跟scroll view
一样. - 将
scroll view
的内容放在Content View
中,像普通视图一样进行布局即可.
~~您的支持,是我继续分享的动力,欢迎建议吐槽,如帮到你,那点击下方,给我加个鸡腿吧 (>_<) ~~
网友评论