大家好,我的收藏中的单元格选择有问题。
当然,为了管理选择和取消选择,我提供了委托方法
didSelectItemAtIndexPath
和
didDeselectItemAtIndexPath
一切正常,但我有一个无法解决的问题。简而言之,当我选择一个单元格时,我希望可以通过重新选择单元格本身来取消选择最后一个选定的单元格。。。例如
我会给手机起个名字,让你更好地理解我的问题
用户选择单元格
“22”
取消选择。我希望用户重新选择单元格
22
然后取消选择它。
我试着用
allowMultipleSelection = YES
这似乎是在我喜欢的系统中,但问题是单元格没有被重新选择,所有其他条目都被选中,因此它是错误的。。。我怎样才能解决这个问题??
这是我用来选择和取消选择单元格的代码
-(void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath {
SmartCalendarDayCell *calendarDayCell = (SmartCalendarDayCell *)[self.dayCollectionView cellForItemAtIndexPath:indexPath];
calendarDayCell.day.textColor = [UIColor colorWithHexString:@"#D97E66" setAlpha:1];
}
-(void)collectionView:(UICollectionView *)collectionView didDeselectItemAtIndexPath:(NSIndexPath *)indexPath {
SmartCalendarDayCell *calendarDayCell = (SmartCalendarDayCell *)[self.dayCollectionView cellForItemAtIndexPath:indexPath];
calendarDayCell.day.textColor = [UIColor lightGrayColor];
}