美文网首页
UITableViewHeaderView 超出边界展示

UITableViewHeaderView 超出边界展示

作者: Junetaurus | 来源:发表于2020-09-23 11:57 被阅读0次
    • 效果图
    • 核心代码
    //tableView
    [_tableView sendSubviewToBack:_headerView];
    
    //headerView的高度小于需要展示图片的高度
    _headerView.height = _headerView.headerHeight - 15;
    
    //UITableViewCell 初始化
    self.backgroundColor = [UIColor clearColor];
    self.contentView.backgroundColor = [UIColor clearColor];
    self.layer.zPosition = 1;
    

    相关文章

      网友评论

          本文标题:UITableViewHeaderView 超出边界展示

          本文链接:https://www.haomeiwen.com/subject/dlnnyktx.html