如何自定义 UITableView 中部分的 UIView?

Posted

技术标签:

【中文标题】如何自定义 UITableView 中部分的 UIView?【英文标题】:How to customize UIView of sections in UITableView? 【发布时间】:2016-09-16 14:43:35 【问题描述】:

我想在 UITableView 中设置我的部分的样式,例如 viewForFooterInSectionviewForHeaderInSection

我只能使用titleForHeaderInSection 设置标题,使用heightForHeaderInSection 设置高度,但我想设置背景颜色、字体大小、字体颜色等...

有可能吗?

【问题讨论】:

是的,创建 UIView 并实现 viewForHeaderInSection 然后返回你的视图。 您可以对部分页眉和页脚的视图进行任何操作。请澄清您遇到了什么麻烦。你的问题不是很清楚。 复制于:***.com/questions/15611374/… 【参考方案1】:

你可以用苹果提供的这个委托方法来做到这一点。

//for header 
- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section

     UIView *myview = [[UIView alloc] init];
    //give size for veiw, background color, add label anything here



    return myview;



//for footer

- (UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section

    UIView *myview = [[UIView alloc] init];
    //give size for veiw, background color, add label anything here



    return myview;

【讨论】:

以上是关于如何自定义 UITableView 中部分的 UIView?的主要内容,如果未能解决你的问题,请参考以下文章

动态更新 UITableView 部分标题

如何在自定义 UITableView 中获取文本字段

Swift - 如何使用枚举为 UITableView 制作自定义标题部分?

自定义 UITableView 部分索引

如何将闪亮的表面添加到 UITableView

使用大型数据库时,如何避免 UITableView 中的自定义单元格加载时间过长