This should be about right:
func tableView(tableView: UITableView, indexPath: NSIndexPath) {
let cell = tableView.cellForRowAtIndexPath(indexPath);
let cellText = cell.textLabel.text;
}
4
solved TableViewCell in Swift?
This should be about right:
func tableView(tableView: UITableView, indexPath: NSIndexPath) {
let cell = tableView.cellForRowAtIndexPath(indexPath);
let cellText = cell.textLabel.text;
}
4
solved TableViewCell in Swift?