代码之家  ›  专栏  ›  技术社区  ›  kAiN

UICollectionView问题与选择/取消选择单元格

  •  0
  • kAiN  · 技术社区  · 7 年前

    大家好,我的收藏中的单元格选择有问题。 当然,为了管理选择和取消选择,我提供了委托方法 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];    
    }
    
    1 回复  |  直到 7 年前
        1
  •  1
  •   trungduc 邱林和    6 年前

    据我所知,你想要 collectionView 一次只能选择一个单元格,如果再次单击所选单元格,将取消选择。如果我有什么误解,请告诉我。

    第一

    • 你不应该改变 textColor 属于 day 在里面 didSelectItemAtIndexPath didDeselectItemAtIndexPath 方法。因为当你滚动 集合视图 ,单元格将被重新使用,颜色为 白天 对某些单元格来说是错误的。
    • 要解决此问题,请使用 property selected of UICollectionViewCell

      SmartCalendarDayCell。m级

      - (void)setSelected:(BOOL)selected {
        [super setSelected:selected];
      
        if (selected) {
          self.day.textColor = [UIColor colorWithHexString:@"#D97E66" setAlpha:1];
        } else {
          self.day.textColor = [UIColor lightGrayColor];
        }
      }
      

    第二

    • 要取消选择所选单元格,应选中并打开 collectionView:shouldSelectItemAtIndexPath: 方法

      - (BOOL)collectionView:(UICollectionView *)collectionView shouldSelectItemAtIndexPath:(NSIndexPath *)indexPath {
        if ([collectionView.indexPathsForSelectedItems containsObject:indexPath]) {
          [collectionView deselectItemAtIndexPath:indexPath animated:NO];
          return NO;
        }
      
        return YES;
      }
      

    有关更多详细信息,请查看我的演示回购 here