菜鸟教程小白 发表于 2022-12-12 14:29:05

ios - 如何删除 UITableView 中的空部分标题


                                            <p><p>我有一个 UITableView,因为我有三个标题标题。<strong>问题是:</strong>当我的标题标题值为空时意味着标题不应显示在表格 View 中。我尝试了很多方法对我没有帮助。谁能帮帮我。</p>

<pre><code>- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section
{
return ;
}

- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
{
return 60;
}

-(UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
{
UIView *headerView = [ initWithFrame:CGRectMake(0, 0, tableView.bounds.size.width, 75)];
UILabel *headerTitile =[initWithFrame:CGRectMake(20, -5, tableView.bounds.size.width-20, 75)];
headerTitile.text = ;

headerTitile.textColor = ;
headerTitile.TextAlignment=NSTextAlignmentCenter;
;
headerTitile.font = ;

headerView.backgroundColor = ;

return headerView;

}
</code></pre></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>你可以这样使用</p>

<pre><code>    - (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
   {

    if ()
    {
      return 0;
    }
    else
   {
      return 60;
   }
    }
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 如何删除 UITableView 中的空部分标题,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/28847218/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/28847218/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 如何删除 UITableView 中的空部分标题