UITableView - 主标题和节标题

时间:2018-05-04 13:00:09

标签: ios swift uitableview

使用UITableView,主表视图和每个部分都有标题。但是,我们在这两个标题之间有一个奇怪的差距。我们尝试了其他SO答案中给出的解决方案,例如:

self.edgesForExtendedLayout

tableView.contentInset

self.automaticallyAdjustsScrollViewInsets = false

但没有运气!

我已经整理了正在发生的事情的截图:

enter image description here

问题是红色和绿色标题之间的差距,任何帮助非常感谢,如果需要,很乐意分享代码的进一步片段。突出显示的区域在视图调试器中匹配,因此我已经确认它不是任何地方额外填充的问题。

一些相关代码:

func tableView(_ tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? {
    let sectionHeader = ShareScreenSectionHeaderView()
    let title = viewData.sections[section].sectionTitle
    let subtitle = viewData.sections[section].sectionSubtitle
    sectionHeader.update(title: title, subtitle: subtitle)
    return sectionHeader
}

表格视图的标头设置为UIView,使用tableHeaderView属性设置

1 个答案:

答案 0 :(得分:0)

There is no gap between the headerview and section header The Xib of the tableview and UIView

以下是代码段

@property (weak, nonatomic) IBOutlet UITableView *tblLoad;
@property (strong, nonatomic) IBOutlet UIView *lbltblHeader;

- (void)viewDidLoad {
[super viewDidLoad];
   self.tblLoad.tableHeaderView = self.lbltblHeader;
   self.tblLoad.delegate = self;
   self.tblLoad.dataSource= self;
  [self.tblLoad reloadData];
}
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{
    return 2;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
    if (section ==0) {
        return 5;
    }
    return 1;
}
- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section{
    return 50;
}
- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section{
    UIView *v =[[UIView alloc] initWithFrame:CGRectMake(0, 0, tableView.frame.size.width, 20)];
    v.backgroundColor = UIColor.greenColor;
    UILabel *lbl = [[UILabel alloc]initWithFrame:CGRectMake(10, 10, 200, 30) ];
    lbl.text = [NSString stringWithFormat:@"I am the %ld Section ",section];
    lbl.textColor = UIColor.blackColor;
    [v addSubview:lbl];
    return v;

}
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{
    return 100;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
    NSString *cellIdentifier = @"CellReuse";
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellIdentifier];
    if (cell == nil)
    {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellIdentifier] ;
        //you can customize your cell here because it will be used just for one row.
    }
    cell.textLabel.text = [NSString stringWithFormat:@"I am the %ld Cell ",(long)indexPath.row];
    cell.textLabel.textColor = UIColor.whiteColor;
    cell.backgroundColor = UIColor.lightGrayColor;
    return cell;
}
  

我已经创建了一个新的测试项目来测试你的场景,但我无法复制,因为你可以看到headerview和section header之间没有差距。