Get Cell Reference From Tableview Cell

[Solved] Get Cell Reference From Tableview Cell | Swift - Code Explorer | yomemimo.com
Question : get cell reference from tableview cell

Answered by : awful-angelfish-m7mla72dcqcf

let indexPath = NSIndexPath(forRow: tag, inSection: 0)
let cell = tableView.cellForRowAtIndexPath(indexPath) as! CustomCell!

Source : https://newbedev.com/how-to-access-the-content-of-a-custom-cell-in-swift-using-button-tag | Last Update : Tue, 03 Aug 21

Answers related to get cell reference from tableview cell

Code Explorer Popular Question For Swift