gpt4 book ai didi

ios - 无法获取第一个单元格的正确索引

转载 作者:行者123 更新时间:2023-11-29 00:08:54 25 4
gpt4 key购买 nike

尝试从 didSelectItemAtIndexPath 中的 cellForItemAtIndexPath 访问 uilabel,但无法获取第一个单元格。这是我的代码

cellForItemAtIndexPath

UICollectionViewCell *cell=[collectionView dequeueReusableCellWithReuseIdentifier:@"Cell" forIndexPath:indexPath];
UILabel *featureName = [[UILabel alloc] initWithFrame:CGRectMake(5, 5, cell.frame.size.width-10, cell.frame.size.height-10)];
featureName.tag = indexPath.row;
[cell addSubview:featureName];

didSelectItemAtIndexPath

UICollectionViewCell *cell = [collectionView cellForItemAtIndexPath:indexPath];

UILabel *featureName = [cell viewWithTag:indexPath.row];
featureName.textColor = [UIColor lightGrayColor];

可以从所有单元格中获取label.tag,但不能从第一个单元格中获取。点击第一个单元格时应用程序崩溃。

最佳答案

indexPath.row 第一行为 0,但 0 不是有效标记。我认为您应该只使用非零值。

尝试即

featureName.tag = indexPath.row + 1;

...

UILabel *featureName = [cell viewWithTag:indexPath.row+1];

关于ios - 无法获取第一个单元格的正确索引,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47178810/

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