-(UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath{
Cell *aCell = [collectiveView dequeueReusableCellWithReuseIdentifier:@"cell" forIndexPath:indexPath];
return aCell;
}
我在每个单元格中有一个集合视图和一个文本字段
我发现某些意外行为有时文本字段中的文本会随机消失或复制到其他单元格中的文本字段
我怎样才能解决这个问题