zepojo / UPCarouselFlowLayout

A fancy carousel flow layout for UICollectionView on iOS.
MIT License
1.66k stars 236 forks source link

setCurrentItem #47

Open ahmtkocamn opened 5 years ago

ahmtkocamn commented 5 years ago

Hi, I want the cells to start at 3. How can I do that.

SocialKitLtd commented 5 years ago

Did you solve it? We are trying to do the same thing but it crashes...

shvetsjr commented 5 years ago

Same here

SocialKitLtd commented 5 years ago

Any news about this? We used an ugly/unsafe workaround for now... But It's not stable

jayBJP commented 4 years ago

I have solved it by using following code by setting ContentOffset of collection view.

self.cv_Status.setContentOffset(CGPoint(x:collection_Cell_Width * currnt_Index, y: 0), animated: true)

alisherFsociety commented 2 years ago
extension UICollectionView {
    func scrollToIndex(index:Int,section:Int){
        let indexPath = IndexPath(row: index, section: section)
        self.selectItem(at: indexPath, animated: true, scrollPosition: .centeredHorizontally)
    }
}