我正在尝试创建一个标题标签并将其缩进,以便它出现在表格视图上方而不是与屏幕左侧齐平。我已经实现了以下代码,它改变了标题标签的外观,但不改变位置。
- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section {
UIView *headerView = [[UIView alloc] initWithFrame:CGRectMake(0,0,tableView.frame.size.width,30)];
UILabel *headerLabel = [[UILabel alloc] initWithFrame:CGRectMake(10,0, headerView.frame.size.width, 30)];
headerLabel.backgroundColor = [UIColor clearColor];
headerLabel.textColor = [UIColor whiteColor];
headerLabel.shadowColor = [UIColor grayColor];
headerLabel.shadowOffset = CGSizeMake(0.0, 1.0);
headerLabel.font = [UIFont boldSystemFontOfSize:18];
headerLabel.text = @"Header Label";
[headerView addSubview:headerLabel];
return headerLabel;
}
谁能看到我做错了什么?
谢谢