ios下拉tableview让背景色跟导航栏颜色一致

   

    UIView *headerView = [[UIView alloc] initWithFrame:(CGRectMake(0, 0, self.view.frame.size.width, 200))];

    

    self.headerImageView = [[UIImageView alloc] initWithFrame:(CGRectMake(0, 0, self.view.frame.size.width, 200))];

    

    self.headerImageView.backgroundColor  = CHEX(0x3db0fe); // 自己选择的图片

    

    [headerView addSubview:self.headerImageView];

    

    self.tableView.tableHeaderView = headerView;

    

    

    self.tableView.contentInset = UIEdgeInsetsMake(-200, 0, 0, 0);

 

    self.tableView.delegate     = self;

     self.tableView.dataSource   = self;

    [self.tableView registerClass:[HBMyOrderCell class] forCellReuseIdentifier:@"HBMyOrderCellID"];

    [self.tableView registerClass:[HBActionCell class] forCellReuseIdentifier:@"HBActionCellID"];

    [self.tableView registerClass:[HBOtherActionCell class] forCellReuseIdentifier:@"HBOtherActionCelllID"];

    

    [self.view addSubview:self.tableView];

 

 

 

代理方法:

- (void)scrollViewDidScroll:(UIScrollView *)scrollView

{

  

 

    CGFloat width = self.view.frame.size.width; // 图片宽度

    

    CGFloat yOffset = scrollView.contentOffset.y;  // 偏移的y

    

    if (yOffset < 0) {

        

        CGFloat totalOffset = 200 + ABS(yOffset);

        

        CGFloat f = totalOffset / 200;

        

        self.headerImageView.frame =  CGRectMake(- (width * f - width) / 2, yOffset, width * f, totalOffset); //拉伸后的图片的frame应该是同比例缩放。

        

    }

 

 

}

 

 

posted @   super1250  阅读(752)  评论(0编辑  收藏  举报
编辑推荐:
· AI与.NET技术实操系列:向量存储与相似性搜索在 .NET 中的实现
· 基于Microsoft.Extensions.AI核心库实现RAG应用
· Linux系列:如何用heaptrack跟踪.NET程序的非托管内存泄露
· 开发者必知的日志记录最佳实践
· SQL Server 2025 AI相关能力初探
阅读排行:
· 震惊!C++程序真的从main开始吗?99%的程序员都答错了
· 【硬核科普】Trae如何「偷看」你的代码?零基础破解AI编程运行原理
· 单元测试从入门到精通
· 上周热点回顾(3.3-3.9)
· winform 绘制太阳,地球,月球 运作规律
历史上的今天:
2015-10-18 iOS键盘监听的通知
点击右上角即可分享
微信分享提示