UITableViewCell的重用机制

  1. 在ViewDidLoad 中注册nib,在CellForRow中
  var iconTableViewCell = tableView.dequeueReusableCell(withIdentifier: iConIdentifier) as? IconTableViewCell
         if iconTableViewCell == nil {
            iconTableViewCell = IconTableViewCell.init(style: .default, reuseIdentifier: iConIdentifier)
        }
  1. 在ViewDidLoad中没有注册nib在CellForRow中
 if let customCell = tableView.dequeueReusableCell(withIdentifier: "CustomTableViewCell") as? CustomTableViewCell {
            customCell.leftLabel.text = "\(indexPath.row)"
            resultCell = customCell
        } else {
            let customCell = CustomTableViewCell.init(style: .default, reuseIdentifier: "CustomTableViewCell")
            customCell.leftLabel.text = "\(indexPath.row)"
            resultCell = customCell
        }

你可能感兴趣的:(UITableViewCell的重用机制)