我搜索了Apple的文档和在线,但没有找到关于如何创建分隔符的参考,如下图所示。有蓝线包含分隔每个单元格的字符串。
我怎样才能创建这些?谢谢。
答案 0 :(得分:0)
这些是“章节标题视图”。您可以通过实施UITableViewDelegate
协议来提供它们。特别是tableView:viewForHeaderInSection:
方法。
希望这有帮助!
答案 1 :(得分:0)
要添加@LuisCien的答案,您可能还需要实施UITableViewDataSource协议。您需要提供表格所包含的部分数量。以下是一些需要考虑的方法:
(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
tableView:titleForHeaderInSection:
答案 2 :(得分:0)
Here You can add your customView
-(UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
{
}
Here you can add your title
- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section
{
}
here you can define the number of section
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
}