Remove the stickiness of the tableView header view.

Source: Internet
Author: User

Remove the stickiness of the tableView header view.

In some projects, you need to use the headerview of tableview, but if you want to stick the headerview to the top, and want to scroll with the cell, you can try the following code to help you achieve this:

-(Void) scrollViewDidScroll :( UIScrollView *) scrollView {if (scrollView = _ tableView) {CGFloat headerViewHeight = 36; if (scrollView. contentOffset. y <= headerViewHeight & scrollView. contentOffset. y> = 0) {scrollView. contentInset = UIEdgeInsetsMake (-scrollView. contentOffset. y, 0, 0, 0);} else if (scrollView. contentOffset. y> = headerViewHeight) {scrollView. contentInset = UIEdgeInsetsMake (-headerViewHeight, 0, 0, 0) ;}} headerViewHeight is the height of headerview in the project

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.