美文网首页
自定义 tableView的header,让 header随着

自定义 tableView的header,让 header随着

作者: 口袋海贼王_ | 来源:发表于2015-04-17 18:19 被阅读669次

    自定义一个headerView

    self.tableView.tableHeaderView=self.headerView;

    这个headerView 会有一个默认的背景颜色,搞了好久都没找到,在哪设置,在 xcode 发现多出一个控件uitableviewheaderfooterview

    然后在看到文章:http://blog.csdn.net/liwenjie0912/article/details/41806243

    在设置一个透明的背景颜色,发现不行

    - (CGFloat)tableView:(UITableView*)tableView heightForHeaderInSection:(NSInteger)section

    经过研究看到 tableview 的方法,在这里设置颜色透明就搞定了.

    - (void)tableView:(UITableView*)tableView willDisplayHeaderView:(UIView*)view forSection:(NSInteger)section {

    view.tintColor= [UIColorclearColor];

    }

    相关文章

      网友评论

          本文标题:自定义 tableView的header,让 header随着

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