-(UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath{
Cell *aCell = [collectiveView dequeueReusableCellWithReuseIdentifier:@"cell" forIndexPath:indexPath];
return aCell;
}
各セル内にコレクションビューと1つのテキストフィールドがあります
テキストフィールドのテキストが消えたり、他のセルのテキストフィールドにランダムに複製されたりするときに、予期しない動作が発生することがあります
どうすればこれを修正できますか