我使用了 UICollectionView 并使用单元格放置了一个标签,该标签与我的值相关联。当您插入单元格时,我想将文本带到所选标签并使用它来做其他事情。我能怎么做?
使用此代码,我可以准确地返回索引,但我无法获取单元格的内容并将其放入字符串中。
- (void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath {
NSString *CellIdentifier = @"Cell";
CustomCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:CellIdentifier forIndexPath:indexPath];
NSString *strColorCell = cell.lblCustomCell.text;
NSLog(@"Indice della cella: %i %i %@", indexPath.item, indexPath.section * 2 + indexPath.row, strColorCell);
}