How can i animate the loading of cells into a collectionview.
Ive been playing with the following code but it only animates cells that are off screen when i scroll.
How to animate the all the cells not the screen to start?
let finalFrame: CGRect = cell.frame
cell.frame = CGRect(x: finalFrame.origin.x - 1000, y: -500, width: 0, height: 0)
UIView.animate(withDuration: 0.5, animations: {
cell.frame = finalFrame
})