为何 cell 无法高亮和选中?

2015-09-11 16:52:16 +08:00
 strom001
```objc
- (BOOL )collectionView:(UICollectionView *)collectionView shouldSelectItemAtIndexPath:(NSIndexPath *)indexPath {

return YES;
}

- (void )collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath {
UICollectionViewCell *cell = [collectionView cellForItemAtIndexPath:indexPath];
cell.selectedBackgroundView.backgroundColor = [UIColor purpleColor];
}
```
这样点选以后颜色没有变化
3652 次点击
所在节点    iDev
5 条回复
PopeyeLau
2015-09-11 17:08:03 +08:00
应该是在 cellForItemAtIndexPath 方法 设置 cell 的 selectedBackgroundView 跟 backgroundColor 吧.
如果前面没设置, didSelectItemAtIndexPath 里面取 selectedBackgroundView 应该是 nil.
l12ab
2015-09-11 22:13:26 +08:00
我怎么记得默认带选中效果?
kobe1941
2015-09-11 22:55:54 +08:00
一般子类化 cell ,然后自行设置高亮和选中的效果
strom001
2015-09-12 15:23:03 +08:00
```objc
- (void )collectionView:(UICollectionView *)colView didHighlightItemAtIndexPath:(NSIndexPath *)indexPath {
UICollectionViewCell* cell = [colView cellForItemAtIndexPath:indexPath];
cell.contentView.backgroundColor = [UIColor blueColor];
}

- (void )collectionView:(UICollectionView *)colView didUnhighlightItemAtIndexPath:(NSIndexPath *)indexPath {
UICollectionViewCell* cell = [colView cellForItemAtIndexPath:indexPath];
cell.contentView.backgroundColor = nil;
}
```
这段是 xcode 文档里的
strom001
2015-09-12 16:18:59 +08:00
@PopeyeLau selectedBackgroundView 在 cellForItem 那里设置了也是 nil 啊……另外我在 IB 里设置了 cell 颜色,后来改为默认,结果代码设置颜色就不管用了……

这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。

https://www.v2ex.com/t/219988

V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。

V2EX is a community of developers, designers and creative people.

© 2021 V2EX