当 UITableView 的 style 属性设置为 Plain 时,这个tableview的section
header在滚动时会默认悬停在界面顶端。取消这一特性的方法有两种:
- 将
style设置为Grouped。这时所有的section header都会随着scrollview滚动了。不过grouped和plain的样式有轻微区别,切换样式后也许需要重新调整UI ,plain可以设置section的间隔高度,grouped是没有办法设置section之间的间隔高度。 - 重载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);
}
}
在iOS开发中,当UITableView的style设为grouped时,section header会悬停。要取消这一行为,可以将style改为plain,或者通过重写scrollview的delegate方法实现。两种方法可能需要对UI进行相应调整。
609

被折叠的 条评论
为什么被折叠?



