我有一些有趣的通知,滚动性能启用 ,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 滴中。
有没有人建议或解释为什么会发生这种奇怪的行为?
非常感谢!