pushviewcontroller animation is slow/choppy

前端 未结 8 1333
無奈伤痛
無奈伤痛 2020-12-13 00:32

I push a ViewController which contains not too many views, UIScrollView which contains 10 views inside, I have a singleton ViewController

8条回答
  •  暖寄归人
    2020-12-13 01:27

    Swift: If you are applying shadow on any view etc then you can also try below code for this.

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

提交回复
热议问题