将数据从TableView (以模态显示)发送到文本字段内的ViewController是一个常见的开发需求,可以通过以下步骤实现:
var selectedData: String?
func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
let selectedRowData = yourDataArray[indexPath.row]
let destinationVC = YourDestinationViewController()
destinationVC.selectedData = selectedRowData
present(destinationVC, animated: true, completion: nil)
}
override func viewDidLoad() {
super.viewDidLoad()
yourTextField.text = selectedData
}
通过以上步骤,你可以实现将数据从TableView发送到文本字段内的ViewController。这个功能在实际开发中常用于编辑或查看详细信息的场景。
腾讯云相关产品和产品介绍链接地址:
领取专属 10元无门槛券
手把手带您无忧上云