TableViewCell in Swift?

This should be about right:

func tableView(tableView: UITableView, indexPath: NSIndexPath) {
   let cell = tableView.cellForRowAtIndexPath(indexPath);
   let cellText = cell.textLabel.text;
 }

Browse More Popular Posts

Leave a Comment