ios – 自定义标题重叠组中的单元格

前端之家收集整理的这篇文章主要介绍了ios – 自定义标题重叠组中的单元格前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有点卡住尝试创建自定义ios表头.我的标题是30px高,我使用此代码来创建它们:
- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section {
    NSString *sectionTitle = [self tableView:tableView titleForHeaderInSection:section];
    if (sectionTitle == nil) {
        return nil;
    }

    // Create label with section title
    UILabel *label = [[UILabel alloc] init] ;
    label.frame = CGRectMake(0,140,30);
    label.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"header_gradient.png"]];
    label.textColor = [UIColor whiteColor];
    label.shadowColor = [UIColor whiteColor];
    label.shadowOffset = CGSizeMake(0.0,1.0);
    label.font = [UIFont boldSystemFontOfSize:12];
    label.text = sectionTitle;

    // Create header view and add label as a subview
    UIView *view = [[UIView alloc] initWithFrame:CGRectMake(0,30)];
    [view addSubview:label];

    return view;
}

- (CGFloat)tableView:(UITableView *)tableViewheightForHeaderInSection:(NSInteger)section {
    return 30;
}

它几乎可以工作,但我的标题似乎与它们下面的单元格/标题相符:

有人能指出我在清理标题的正确方向吗?

提前致谢

解决方法

你错过了[空间]:

你有:

- (CGFloat)tableView:(UITableView *)tableViewheightForHeaderInSection:(NSInteger)section {

它应该是:

- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section {
原文链接:https://www.f2er.com/iOS/331147.html

猜你在找的iOS相关文章