UICollectionView performance - _updateVisibleCellsNow

后端 未结 10 1928
天涯浪人
天涯浪人 2020-12-07 07:36

I\'m working on a custom UICollectionViewLayout that displays cells organized by day/week/month.

It is not scrolling smooth, and it looks like the lag i

10条回答
  •  囚心锁ツ
    2020-12-07 08:31

    Here is Altimac's answer converted to Swift 3:

    cell.layer.shouldRasterize = true
    cell.layer.rasterizationScale = UIScreen.main.scale
    

    Also, it should be noted that this code goes in your collectionView delegate method for cellForItemAtIndexPath.

    One more tip - to see an app's frames per second (FPS), open up Core Animation under Instruments (see screenshot).

提交回复
热议问题