My scroll view is containing 4 views. Below are the first three in my scroll view

My goal : i would like to scroll so that my scroll view will show the second + the third + the fourth view ( the first view will be off )
Question : how can i do that
Right now when i scroll, i am getting

From the looks of things, it seems as though you aren’t adding the other views, or you’re not adding them in the proper position.
In order to have a UIScrollView work, you’ll need to set the
contentSizeandframeproperties and position the subviews as if it were one big map. Say you had three 200×200 views you wanted to add, you would set their individual frame properties to (0, 0, 200, 200), (200, 0, 200, 200), (400, 0, 200, 200), if you wanted them side by side. Then you would need theUIScrollView‘scontentSizeproperty set to (600, 200) in order to have it scroll through all of it.If this isn’t what you’re looking for, please clarify your question.