1

带有部分隐藏标题的 ios 表示例

在这里您可以看到顶部部分的标题部分隐藏,它与下一个具有相同的大小,但它的一部分隐藏在表格框架后面。如果我将其大小设置为 40,它将完全隐藏。有人可以解释发生了什么吗?我已将表格向下移动,以免其边缘位于导航栏下方。桌子的风格很朴素。

表委托的代码:

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{return 2;}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
    if(section == 0)
        return 8;
    if(section == 1)
        return 16;
    return 0;
}

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
    return 50;
}

- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section {
    return 70;
}

- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section {
    UIView *view = [[[UIView alloc] initWithFrame:CGRectMake(0, 0, 320, 70)] autorelease];
    [view setBackgroundColor:[UIColor grayColor]];
    return view;
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    UITableViewCell *cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"reuse"] autorelease];
    cell.textLabel.text = [NSString stringWithFormat:@"%i", indexPath.row];
    return cell;
}
4

1 回答 1

1

必须设置偏移量才能滚动视图。查看使用此控制器的代码。也许你错过了。

于 2013-10-07T03:42:54.857 回答