您的位置:首页 > 产品设计 > UI/UE

让UITableView的section header view不悬停的方法

2016-07-01 10:49 459 查看
原文  http://www.codingtime.info/post/posts/leng-zhi-shi/2015_1_5_uitableview_section_header
主题 UITableView

当  
UITableView
 的  
style
 属性设置为  
Plain
 时,这个tableview的section
header在滚动时会默认悬停在界面顶端。取消这一特性的方法有两种: 
将  
style
 设置为  
Grouped
 。这时所有的section
header都会随着scrollview滚动了。不过  
grouped
 和  
plain
 的样式有轻微区别,切换样式后也许需要重新调整UI 
重载scrollview的delegate方法
- (void)scrollViewDidScroll:(UIScrollView *)scrollView {
CGFloat sectionHeaderHeight = 40;
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);
}
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: