I have some interesting notice with scrolling performance on UITableView with cornerRadius, borderWidth and borderColor e
UITableView
cornerRadius
borderWidth
borderColor
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.