美文网首页iOS Developer
UITableView.tableHeaderView 遮挡Ce

UITableView.tableHeaderView 遮挡Ce

作者: dose_爽 | 来源:发表于2017-01-06 11:57 被阅读389次

    在网上找了很多方案都没有好的解决方式,把自己的解决方式贴出来,主要在于3个地方。

    1.- (UIView*)tableView:(UITableView*)tableView viewForHeaderInSection:(NSInteger)section{}方法来加载headerView,不要直接写UITableView.tableHeaderView = view; 要用代理方式

    2.- (CGFloat)tableView:(UITableView*)tableView heightForHeaderInSection:(NSInteger)section{}代理方式来实现高度,不要用UITableView.tableHeaderView.frame或者UITableView.tableHeaderView.height来做

    3.比较重要的一点 就是初始化tableView的时候[[UITableViewalloc]initWithFrame:CGRectZerostyle:UITableViewStyleGrouped]; 要用Group的处理方式。

    以上3点就是解决问题的方案的关键。

    相关文章

      网友评论

        本文标题:UITableView.tableHeaderView 遮挡Ce

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