每次用户点击collection view中的cell:
- (void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath
需要修改一个标题中的label:
UICollectionReusableView *headerView = [collectionView dequeueReusableSupplementaryViewOfKind:UICollectionElementKindSectionHeader withReuseIdentifier:@"Header" forIndexPath:indexPath];
UILabel *headerTitle=(UILabel *)[headerView viewWithTag:1];
headerTitle.text=@"test";
每次tag都设置正确,但是内容并没改变,谢谢
UICollectionReusableView *headerView = [collectionView dequeueReusableSupplementaryViewOfKind:UICollectionElementKindSectionHeader withReuseIdentifier:@"Header" forIndexPath:indexPath];
if(!headerView)
{
headerView = [[UICollectionReusableView alloc] initwith.....];
}
UILabel *headerTitle=(UILabel *)[headerView viewWithTag:1];
headerTitle.text=@"test";
另外你的view的tag设置成根据indexPath 来确定.