I have a table view with a few items (all text). When the user clicks the row I want that text in that cell to be added to an array.
How Do I grab the text out of th
Swift Version:
let cell: UITableViewCell = tableView.cellForRowAtIndexPath(indexPath)! let cellText: String = cell.textLabel.text