當(dāng) UITableView 的 style 屬性設(shè)置為 Plain 時,這個tableview的section header在滾動時會默認(rèn)懸停在界面頂端。取消這一特性的方法有兩種:
- 將 style 設(shè)置為 Grouped 可婶。這時所有的section header都會隨著scrollview滾動了兜蠕。不過 grouped 和 plain 的樣式有輕微區(qū)別,切換樣式后也許需要重新調(diào)整UI
- 重載scrollview的delegate方法
//去掉UItableview headerview黏性(sticky)
-(void)scrollViewDidScroll:(UIScrollView *)scrollView {
if (scrollView == self.tableView)
{
CGFloat sectionHeaderHeight = 50; //sectionHeaderHeight
if (scrollView.contentOffset.y<=sectionHeaderHeight&&scrollView.contentOffset.y>=0) {
scrollView.contentInset = UIEdgeInsetsMake(-scrollView.contentOffset.y, 0, 0, 0);
} else if (scrollView.contentOffset.y>=sectionHeaderHeight) {
scrollView.contentInset = UIEdgeInsetsMake(-sectionHeaderHeight, 0, 0, 0);
}
}
}
本文轉(zhuǎn)載自:http://blog.csdn.net/leemin_ios/article/details/49799479