获取单元格中textLabel的值Swift 3
Get the value of textLabel in a cell Swift 3
我有一个 tableview prototypecells,带有一个 textLabel 和一个按钮,如何使用带有函数的单元格按钮而不是使用 tableView 来获取 cell.textLabel 的值:UITableView,didSelectRowAt indexPath:IndexPath。
let indexPath = IndexPath(item: x, section: 1)
let cell = tableView.cellForRow(at: indexPath) as? CustomCell
let text = cell?.textLabel.text
简单地说,你必须使用数组来显示数据。
点击按钮获取索引路径使用
var center: CGPoint = sender.center
var rootViewPoint: CGPoint? = sender.superview?.convertPoint(center, to: filterTableView)
var indexPath: IndexPath? = filterTableView.indexPathForRow(at: rootViewPoint)
现在 cell.textLabel 的值可以通过将此 indexPath 传递到数组中找到,
let string = array[indexPath.row]
我有一个 tableview prototypecells,带有一个 textLabel 和一个按钮,如何使用带有函数的单元格按钮而不是使用 tableView 来获取 cell.textLabel 的值:UITableView,didSelectRowAt indexPath:IndexPath。
let indexPath = IndexPath(item: x, section: 1)
let cell = tableView.cellForRow(at: indexPath) as? CustomCell
let text = cell?.textLabel.text
简单地说,你必须使用数组来显示数据。
点击按钮获取索引路径使用
var center: CGPoint = sender.center
var rootViewPoint: CGPoint? = sender.superview?.convertPoint(center, to: filterTableView)
var indexPath: IndexPath? = filterTableView.indexPathForRow(at: rootViewPoint)
现在 cell.textLabel 的值可以通过将此 indexPath 传递到数组中找到,
let string = array[indexPath.row]