Я пытаюсь повторить это поведение .Прежде всего, это легкость прокрутки в клетках.Я сделал похожее поведение, но только когда ячейки не отображаются и будут отображаться.Я пытаюсь вести себя так на клетках, которые на экране.Я, вероятно, должен сделать это на каком-то UIScrollView
делегате, но мне нужно какое-то руководство.
class ViewController: UICollectionViewController, UICollectionViewDelegateFlowLayout {
var array: [Holiday] = [Holiday(imageName: "a"),
Holiday(imageName: "b"),
Holiday(imageName: "c"),
Holiday(imageName: "d"),
Holiday(imageName: "e"),
Holiday(imageName: "f"),
Holiday(imageName: "g"),
Holiday(imageName: "h"),
Holiday(imageName: "i")]
override func viewDidLoad() {
super.viewDidLoad()
self.collectionView.backgroundColor = .white
self.collectionView.register(CollectionCell.self)
}
func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAt indexPath: IndexPath) -> CGSize {
return CGSize(width: view.frame.width, height: 176)
}
func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, minimumLineSpacingForSectionAt section: Int) -> CGFloat {
return 0
}
override func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
return collectionView.reusableCell(for: indexPath, with: self.array[indexPath.row]) as CollectionCell
}
override func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
return self.array.count
}
override func collectionView(_ collectionView: UICollectionView, willDisplay cell: UICollectionViewCell, forItemAt indexPath: IndexPath) {
cell.transform = CGAffineTransform(translationX: 0, y: cell.frame.height/2)
UIView.animate(withDuration: 0.5, delay: 0.01 * Double(indexPath.row), options: [.curveEaseInOut], animations: {
cell.transform = CGAffineTransform(translationX: 0, y: 0)
}, completion: nil)
}
}