1

当有人在集合视图中选择一个单元格(大约 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";

标签和一切都设置正确,但它不会改变。关于我要去哪里错的任何想法?

4

1 回答 1

2

您已经有一个标题视图,因此将一个出列会创建另一个不是您要更改的视图。无法访问集合视图中的标题视图——没有 headerForSection: 方法,因此您必须通过数据源更改标签。因此,如果您只有一个标题,那么您应该有一个字符串属性,我们称之为 headerTitle,您可以使用它来填充标题中的标签。因此,您对 collectionView:viewForSupplementaryElementOfKind:atIndexPath: 的实现应该如下所示:

-(UICollectionReusableView *)collectionView:(UICollectionView *)collectionView viewForSupplementaryElementOfKind:(NSString *)kind atIndexPath:(NSIndexPath *)indexPath {
    RDReusableHeader *headerView;
    if (kind == UICollectionElementKindSectionHeader){
        headerView = [collectionView dequeueReusableSupplementaryViewOfKind:UICollectionElementKindSectionHeader withReuseIdentifier:@"MyView" forIndexPath:indexPath];
        headerView.label.text = self.headerTitle;
    }
    return headerView;
} 

然后在 didSelectItemAtIndexPath: 中,为该属性分配一个新值并在集合视图上调用 reloadData。

    self.headerTitle = @"This is the New Tilte";
    [self.collectionView reloadData];
于 2013-08-15T00:19:53.070 回答