-(CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section{
if(section==0) {
return 200;
}
return 15;
}
-(UIView*)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section {
if(section==0) {
// 自定义第一个 headerView
UIView*view1=[[UIView alloc]initWithFrame:CGRectMake(0, 0, tableView.frame.size.width, 200)];
UIImageView* iage=[[UIImageView alloc]initWithImage:[UIImage imageNamed:@"1.png"]];
iage.frame=view1.frame;
[view1 addSubview:iage];
return view1;
}else{
return nil;
}
}
// 默认透明 向上滑动时逐渐变色
-(void)scrollViewDidScroll:(UIScrollView *)scrollView {
self.navigationController.navigationBar.alpha=scrollView.contentOffset.y/200;
}