问题是我有一个UICollectionView
,我有一个继承自的自定义单元格UICollectionViewCell
。现在我有UICollectionView
两个按钮,当我单击右侧按钮时,单元格应该改变,下一个应该出现在图片中。单元格有一个 TextView 。点击右键,下一个单元格(带有文本视图)应该在图片中。类似地点击左键,它应该显示上一个。
谢谢和最好的问候。
细胞换行:
-(UICollectionViewCell*)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath
{
if (collectionView == self.myCV) {
myCollectionView *cell = [collectionView dequeueReusableCellWithReuseIdentifier:@"MY_CELL" forIndexPath:indexPath];
if (cell == nil)
{
NSArray *xibPath = [[NSBundle mainBundle] loadNibNamed:@"myCollectionView" owner:self options:nil];
cell = [xibPath objectAtIndex:0];
}
return cell;
}
else if (collectionView == self.myCV2)
{
myCC2 *cell = [collectionView dequeueReusableCellWithReuseIdentifier:@"MY_CELL2" forIndexPath:indexPath];
if (cell == nil)
{
NSArray *xibPath = [[NSBundle mainBundle] loadNibNamed:@"myCC2" owner:self options:nil];
cell = [xibPath objectAtIndex:0];
}
return cell;
}
return 0;
}