如何以编程方式添加此功能?我不确定我会搜索到什么。我知道如何添加IBAction而不是代码来生成图片中突出显示的此功能。它是自定义单元格还是分隔符?
答案 0 :(得分:32)
这只是TableView中的标题,它们出现在您的部分
之上如果您想要标题,请使用此方法:
- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section
如果您想要自定义视图,请使用此选项:
- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
高度:
- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
答案 1 :(得分:20)
试试这个以编程方式添加标题,这很容易..
UIView *headerView = [[UIView alloc] initWithFrame:CGRectMake(1, 50, 276, 30)];
headerView.backgroundColor = [UIColor colorWithRed:235/255.0f green:235/255.0f blue:235/255.0f alpha:1.0f];
UILabel *labelView = [[UILabel alloc] initWithFrame:CGRectMake(4, 5, 276, 24)];
labelView.text = @"hello";
[headerView addSubview:labelView];
self.tableView.tableHeaderView = headerView;
或尝试使用Swift
var headerView: UIView = UIView.init(frame: CGRectMake(1, 50, 276, 30))
headerView.backgroundColor = UIColor(red: 235/255.0, green: 235/255.0, blue: 235/255.0, alpha: 1.0)
var labelView: UILabel = UILabel.init(frame: CGRectMake(4, 5, 276, 24))
labelView.text = "hello"
headerView.addSubview(labelView)
self.tableView.tableHeaderView = headerView
答案 2 :(得分:8)
只需在TableViewController
中实现这两个委托方法即可- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
在第一个方法中返回标题视图的高度, 在第二个返回应该显示的视图
这是一个例子
- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
{
return 55.0;
}
- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
{
return [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"simpleHeader.png"]];
}
答案 3 :(得分:8)
更新了Swift 4
与SimplePJ的答案类似。如果要为整个表视图创建自定义标题视图,可以创建一个并将其设置为tableHeaderView,如此。
let headerView: UIView = UIView.init(frame: CGRect(x: 1, y: 50, width: 276, height: 30))
headerView.backgroundColor = .red
let labelView: UILabel = UILabel.init(frame: CGRect(x: 4, y: 5, width: 276, height: 24))
labelView.text = "My header view"
headerView.addSubview(labelView)
self.tableView.tableHeaderView = headerView
这不应与创建表格视图部分标题相混淆,您可以在其中使用以下方法。
func headerView(forSection section: Int) -> UITableViewHeaderFooterView?
返回值是与部分关联的标题视图,如果该部分没有标题视图,则返回nil。