I have an interesting notification with scrolling on UITableViews cornerRadius, borderWidthand borderColor.
self.tableView.layer.cornerRadius = 10.f;
self.tableView.layer.borderWidth = 1.0f;
self.tableView.layer.borderColor = [UIColor whiteColor].CGColor;
If I delete borderWidthand borderColorthan scroll, I get 60 FPS without any problems. So far I am adding these two properties to reduce the FPS layer.
Does anyone have a suggestion or explanation why this strange behavior happens?
Many thanks!
source
share