UITableView的坑

1.UITableViewCell高亮时所有子View背景色会被改成透明色解决办法

levelNumLabel.backgroundColor = UIColor.clear;
levelNumLabel.layer.backgroundColor = UIColor(hexString: "#00D96C")?.cgColor;

2.UITableViewCell 的selectionStyle 设为none时 UIAlertController弹出会有延时

你可能感兴趣的:(UITableView的坑)