简体   繁体   中英

swift weird tableview scroll behaviour from tableView header section

I have a weird tableview header behaviour when scrolling.

When I scroll up the header sticks on top of the view and a cell scrolls under the header.

If I scroll up more then the header starts scroll with the tableview.

Please have a look at GIF I added:

在此处输入图片说明

Set this in viewDidLoad() :

automaticallyAdjustsScrollViewInsets = false

And you can set content insets. Like this:

tableView.contentInset = UIEdgeInsets(top: <#T##CGFloat#>, left: <#T##CGFloat#>, bottom: <#T##CGFloat#>, right: <#T##CGFloat#>)

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