0

我四处寻找,但一无所获。当我向我的表格视图添加新行时。我无法向下滚动到最后一个,但它在 tableview 中。可能是有点糊涂了。如果我用力向下滚动,我可以看到新行,但不能停留在那个位置。一旦我释放,我只能看到倒数第二行。

此外,当用户单击一行时,还有一个动作,该行会变大。此时,我可以向下滚动到最后一个。

有人可以帮帮我吗?

新更新:问题可能是由于自定义单元格。如果我使用默认单元格,那不是问题。

更新1:

由于很多人想看代码,我会发布一些。但我认为这不会有帮助。这是工作代码。没问题。

- (void)addItemToArray {
    num++;
    [items addObject:[NSString stringWithFormat:@"Item No. %d", num]];
    [self.tableView reloadData];
}

- (void)delItemToArray {
    num--;
    [items removeLastObject];
    [self.tableView reloadData];
}


#pragma mark - Table view data source

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
    // Return the number of sections.
    return 1;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    // Return the number of rows in the section.
    return [items count];
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *CellIdentifier = @"Cell";
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil) {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
    }

    // Configure the cell...
    cell.textLabel.text = [items objectAtIndex:indexPath.row];

    return cell;
}

但是如果我将 UITableViewCell 更改为我的自定义单元格 CustomCell。我达不到新的。

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *CellIdentifier = @"Cell";
    CustomCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil) {
        cell = [[CustomCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
    }

    // Configure the cell...
    cell.titleLabel.text = [items objectAtIndex:indexPath.row];

    return cell;
}
4

4 回答 4

1

检查情节提要中是否将“启用滚动”和“启用用户交互”选项设置为“是”,并检查部分的行数。也许你达到了行数的限制。

祝你好运!

于 2013-10-23T13:59:39.593 回答
0

我遇到了同样的问题,我找到的唯一解决方案是重新加载表格视图。请提交RADAR,因为提交报告的开发人员数量决定了 Apple 修复它的速度。

于 2013-10-23T13:58:02.033 回答
0

不确定这是否可行,但是在添加新行时将 tableView 的 contentSize 设置为更高。告诉我进展如何。:)

于 2013-10-23T14:00:30.817 回答
0

检查返回的单元格的高度。可能是单元格高度不正确,因此 tableview 的整个内容大小不正确。

于 2013-10-23T14:35:34.833 回答