gpt4 book ai didi

ios - 自定义 UItableViewCell 标签重叠

转载 作者:行者123 更新时间:2023-11-28 17:53:21 25 4
gpt4 key购买 nike

使用 UITableView 发现 cells 没有正确出队。我使用 storyboard 创建了原型(prototype)单元格,并且有 UIlabel 在单元格上。

  - (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];
}
UILabel*textLabel = (UILabel*)[cell viewWithTag:11];
textLabel.font=[UIFont fontWithName:@"MyUnderwood" size:16];
textLabel.text = [_tableLabelArray objectAtIndex:indexPath.row];

return cell;


}

这是我在滚动 TableView 时得到的 UITableView 的图像

enter image description here

最佳答案

这可能只是一个小错误。尝试使用不同的标记值,或验证原型(prototype)单元格中使用的值。

关于ios - 自定义 UItableViewCell 标签重叠,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23736325/

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