美文网首页
iOS collectionview 单选

iOS collectionview 单选

作者: iOS门三闫 | 来源:发表于2021-09-10 16:01 被阅读0次

1.默认选中第一个item

dispatch_async(dispatch_get_main_queue(), ^{

        if(indexPath.item == 0) {

            [collectionView selectItemAtIndexPath:indexPath animated:YESscrollPosition:(UICollectionViewScrollPositionNone)];

        }

    });

2.在自定义cell里

- (void)setSelected:(BOOL)selected {

    [supersetSelected:selected];

    if(selected ==YES) {

        self.contentView.backgroundColor = kColor(@"#794FF1");

        self.titleL.textColor = UIColor.whiteColor;

    }else{

        self.contentView.backgroundColor = kColor(@"#EBE3FF");

        self.titleL.textColor = kColor(@"#9C9C9C");

    }

}

相关文章

网友评论

      本文标题:iOS collectionview 单选

      本文链接:https://www.haomeiwen.com/subject/urcnwltx.html