0

我在 iPad 上有一些奇怪的行为,而我在 iPhone 上没有。

我有一个分组表视图,其中包含部分的部分和标题,问题是在 iPad 上最顶部的部分的标题没有显示,当向下滚动表格时,部分标题会在屏幕前出现一小段时间。

滚动前

http://desmond.imageshack.us/Himg525/scaled.php?server=525&filename=screenshot2012051410074.png&res=landing http://desmond.imageshack.us/Himg525/scaled.php?server=525&filename=screenshot2012051410074.png&res=landing

滚动后

http://desmond.imageshack.us/Himg59/scaled.php?server=59&filename=screenshot2012051410074.png&res=landing http://desmond.imageshack.us/Himg59/scaled.php?server=59&filename=screenshot2012051410074.png&res=landing

用于创建节标题的代码:

- (UIView *) tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section 
{
    NSString *sectionTitle = [self tableView:tableView titleForHeaderInSection:section];
    if (sectionTitle == nil || [sectionTitle isEqualToString:@""]) {
        return nil;
    }

    // Create label with section title
    UILabel *label = [[UILabel alloc] init] ;
    label.frame = CGRectMake(12, 0, 300, 30);
    label.backgroundColor = [UIColor clearColor];
    label.textColor = [UIColor blackColor];
    label.shadowColor = [UIColor whiteColor];
    label.shadowOffset = CGSizeMake(0.0, 1.0);
    label.font = [UIFont boldSystemFontOfSize:16];
    label.text = sectionTitle;

    UIImage *img = [UIImage imageNamed:@"header"];
    UIImageView *imgView = [[UIImageView alloc] initWithFrame:CGRectMake(10, 0, 300, 44)];
    imgView.image = img;

    UIView *view = [[UIView alloc] initWithFrame:CGRectMake(0, 0, tableView.bounds.size.width, 44)];

    [view addSubview:imgView];
    [view addSubview:label];

    return view;
}

-(NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section
{
    int aSection = [[self.sectionsToDisplay objectAtIndex:section] integerValue];
    return [self.groupHeadings objectAtIndex:aSection];
}

我的 TableView 的代码:

tableViewResult = [[UITableView alloc] initWithFrame:mainView.frame style:UITableViewStyleGrouped];

tableViewResult.separatorColor = [UIColor clearColor];
[mainView addSubview:tableViewResult];

我在另一种方法中设置委托和数据源,因为我首先在将任何数据加载到表中之前进行 Web 请求,即当 Web 请求完成时,我会这样做:

tableViewResult.delegate = self;
tableViewResult.dataSource = self;
[tableViewResult reloadData];

除了最顶部部分的标题外,一切都按预期工作,并且仅在 iPad 上。

有什么想法会导致这种行为吗?

4

1 回答 1

0

解决这个问题的方法是将此功能更改为:

-(NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section
{
    int aSection = [[self.sectionsToDisplay objectAtIndex:section] integerValue];
    if([[self.groupHeadings objectAtIndex:aSection] isEqualToString:@""])
        return nil;
    return [self.groupHeadings objectAtIndex:aSection];
}
于 2012-05-15T06:28:03.990 回答