美文网首页
UIScrollView的Autolayout用法

UIScrollView的Autolayout用法

作者: Jadian | 来源:发表于2018-07-04 10:29 被阅读0次

    ScrollView

    使用

    详细说明

    1. scroll view加入 scene。
    2. 使用 constraints 像普通自动布局一样确定 scroll view 的 size 和 position
    3. 添加一个 viewscroll view。将 view 的 Xcode specific label 设置成 Content View.
    4. Content View 的 top, bottom, leading, 和 trailing 的 edges 紧贴scroll view . (Content View 现在就是 scroll view 的内容区域)

    切记
    Content View 现在还没有确切的 size. 它可水平或垂直延展,去适应放置在它其中的所有视图。

    1. (Optional) 如要禁止水平滚动,只需将 Content View 的 width 设置成跟 scroll view 一样.
    2. (Optional) 如要禁止垂直滚动,只需将 Content View 的height 设置成跟 scroll view 一样.
    3. scroll view 的内容放在 Content View 中,像普通视图一样进行布局即可.

    ~~您的支持,是我继续分享的动力,欢迎建议吐槽,如帮到你,那点击下方,给我加个鸡腿吧 (>_<) ~~

    相关文章

      网友评论

          本文标题:UIScrollView的Autolayout用法

          本文链接:https://www.haomeiwen.com/subject/wrosuftx.html