我有上滚动性能的一些有趣的通知UITableView
与cornerRadius
, borderWidth
和borderColor
启用。
self.tableView.layer.cornerRadius = 10.f;
self.tableView.layer.borderWidth = 1.0f;
self.tableView.layer.borderColor = [UIColor whiteColor].CGColor;
如果我删除borderWidth
和borderColor
比滚动得到60 FPS没有问题。 只要我添加这些两个属性到层FPS下降。
有没有人有一个建议或解释为什么这种奇怪的现象发生?
非常感谢!