我有一个自定义 UICollectionViewCell 子类,它覆盖initWithFrame:
并layoutSubviews
设置其视图。但是,我现在正在尝试做两件我遇到麻烦的事情。
1)我正在尝试自定义UICollectionViewCell
选择时的状态。例如,我想更改UIImageView
.UICollectionViewCell
2)我想UIImage
在UICollectionViewCell
.
谁能指出我正确的方向?
- (void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath {
MyCollectionViewCell *cell = (MyCollectionViewCell *)[collectionView cellForItemAtIndexPath:indexPath];
[cell setSelected:YES];
}