gpt4 book ai didi

ios - UITableView 无法到达新行

转载 作者:行者123 更新时间:2023-11-29 03:32:53 24 4
gpt4 key购买 nike

我四处寻找,但一无所获。当我向 tableview 添加新行时。我无法向下滚动到最后一个,但它在 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;
}

最佳答案

检查 Storyboard 中的“启用滚动”和“启用用户交互”选项是否为"is",并检查部分的行数。也许您已达到行数限制。

祝你好运!

关于ios - UITableView 无法到达新行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19543686/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com