pre select/highlight UICollectionViewCell on first load of view

后端 未结 9 1248
醉酒成梦
醉酒成梦 2021-02-07 05:48

Im trying to preselect the first object/UICollectionViewCell in the UICollectionView? I have tried:

self.dateCollectionView.allowsMultipleSelection=NO;

[self.da         


        
9条回答
  •  清酒与你
    2021-02-07 06:14

    In viewDidAppear:

    NSIndexPath *indexPathForFirstRow = [NSIndexPath indexPathForRow:0 inSection:0];
    [self.dateCollectionView selectItemAtIndexPath:indexPathForFirstRow animated:NO scrollPosition:UICollectionViewScrollPositionNone];
    [self collectionView:self.dateCollectionView didSelectItemAtIndexPath:indexPathForFirstRow];
    

提交回复
热议问题