You can save the text you want to change as a property and use it in:
override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell { let cell = super.tableView(tableView, cellForRowAtIndexPath: indexPath) switch (indexPath.section, indexPath.row) { case (0, 3): cell.textLabel?.text = yourProperty default: break } return cell }
rafalkitta
source share