UITableView cornerRadius with border performance issues on iOS

后端 未结 2 1512
有刺的猬
有刺的猬 2021-01-18 19:33

I have some interesting notice with scrolling performance on UITableView with cornerRadius, borderWidth and borderColor e

2条回答
  •  春和景丽
    2021-01-18 19:37

    CALayer having shouldRasterize property for this type of performance issue. Just set

    self.tableView.layer.shouldRasterize = YES;
    

    This single line saved my lot of time and work.

提交回复
热议问题