【发布时间】:2017-02-17 20:08:12
【问题描述】:
我正在尝试从动态表格视图中的文本字段中获取文本,这意味着我有一个或多个文本字段我尝试过,但它不起作用
override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "GPACell", for: indexPath) as! TableViewCell
coursesGrade.insert(cell.grade.text!, at: indexPath.row)
return cell
}
【问题讨论】:
标签: ios arrays swift uitableview uitextfield