菜鸟教程小白 发表于 2022-12-13 11:50:06

iOS - 自定义部分标题边界问题


                                            <p><p>我正在尝试为我的分组单元格创建我自己的部分标题。当我使用以下代码创建它时,它看起来好像边界已关闭。更具体地说是 <code>CGRect</code></p> 的高度

<p> <img src="/image/GMHtz.png" alt="enter image description here"/> </p>

<pre><code>- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
{
    UIView *header = [[ initWithFrame:CGRectMake(0, 0, tableView.bounds.size.width, 50)] autorelease];
    ];

    UILabel *label = [[ initWithFrame:CGRectMake(10, 3, tableView.bounds.size.width, 18)] autorelease];
    label.textColor = ;
    label.text = @&#34;SOME TEXT&#34;;
    label.backgroundColor = ;

    ;

    return header;
}
</code></pre>

<p>知道为什么高度不对吗?我错过了什么吗?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>您是否还按照文档中的描述实现了 <code>tableView:heightForHeaderInSection:</code>?这应该为您的表返回 50。 </p></p>
                                   
                                                <p style="font-size: 20px;">关于iOS - 自定义部分标题边界问题,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/9472468/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/9472468/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: iOS - 自定义部分标题边界问题