let cell = tableView.dequeueReusableCellWithIdentifier(\"cellReuseIdentifier\", forIndexPath: indexPath) as! CustomTableViewCell
I don\'t want to r
When you need a cell object at runtime, call the table view’s dequeueReusableCell(withIdentifier:for:) method, passing the reuse identifier for the cell you want. The table view maintains an internal queue of already-created cells.
If the queue contains a cell of the requested type, the table view returns that cell. If not, it creates a new cell using the prototype cell in your storyboard. Reusing cells improves performance by minimizing memory allocations during critical times, such as during scrolling.
If you change the appearance of your custom cell’s views, implement the prepareForReuse() method of your cell subclass. In your implementation, return the appearance of your cell's views to their original state. For example, if you change the alpha property of a view in your cell, return that property to its original value