I had the same issue.
Setting the zPosition property of the cell's layer to -100 solved it for me. (I'm using CellRegistration)
i.e.
let registration = UICollectionView.CellRegistration<UICollectionViewCell, Item> { cell, indexPath, item in
cell.layer.zPosition = -100
// do more configuration...
}