Skip to content

Instantly share code, notes, and snippets.

View vipulRajput's full-sized avatar

Vipul Kumar vipulRajput

  • India
View GitHub Profile
@vipulRajput
vipulRajput / CollectionViewController.swift
Created September 15, 2020 10:49 — forked from benjaminsnorris/CollectionViewController.swift
Snap to center collection view cell
class CollectionViewController: UIViewController {
...
func snapToCenter() {
let centerPoint = view.convertPoint(view.center, toView: collectionView)
guard let centerIndexPath = collectionView.indexPathForItemAtPoint(centerPoint)
collectionView.scrollToItemAtIndexPath(centerIndexPath, atScrollPosition: .CenteredHorizontally, animated: true)
}
...
}