scroll view not scrolling vertically

前端 未结 2 1445
醉话见心
醉话见心 2020-12-19 11:24

I have a scroll view that it not scrolling at all:


    scroll_view_content_a_job.contentSize.height = 1800
    scroll_view         


        
2条回答
  •  南方客
    南方客 (楼主)
    2020-12-19 12:13

    Problem is in constraints. Follow these steps:

    Add a container view in scroll view and set top, bottom, leading and trailing constraints of container view with scroll view. Do not set height of this container view. add other views in this container view. Height of container view will adjusted according to sub views of container view. Height of sub views of container view should not set proportional to container view, it should set proportional to scroll view.

    Also make sure you have set the top and bottom of container view to its sub view

提交回复
热议问题