简体   繁体   中英

The scrollView Resets is position when i scroll down vertically

When i try to scroll down the content , it just resets his position , i want to scrolldown and the position stay where i want , can someone please help me know , what i am missing?

scrollview

ScrollView故事板

It seems you are using layouts for scrollview. Scrollview will not know its content size unless contentSize or intrinsicSize are setted.

This would result in the bouncy effect which lets user peek into and returns to original position when lifted the finger.

If le is the last element in the scrollview then in your viewDidLoad add

scrollView.contentSize=CGSizeMake(self.view.frame.size.width,le.frame.size.height+le.frame.orizin.y);

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM