当有人在集合视图中选择一个单元格(大约 15 个单元格)时
- (void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath
方法我试图通过使用更改我放置在一个标题中的标签
UICollectionReusableView *headerView = [collectionView dequeueReusableSupplementaryViewOfKind:UICollectionElementKindSectionHeader withReuseIdentifier:@"Header" forIndexPath:indexPath];
UILabel *headerTitle=(UILabel *)[headerView viewWithTag:1];
headerTitle.text=@"test";
标签和一切都设置正确,但它不会改变。关于我要去哪里错的任何想法?