-2
Google 지역 정보 자동 완성 주소에서 텍스트 입력란을 통해 예상 정보를 얻지 만 텍스트 상자에 저장되지 않습니다. 어떻게 할 수 있습니까? 신속/ios
func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
let indexPath = table1.indexPathForSelectedRow
let currentCell = table1.cellForRow(at: indexPath!) as! UITableViewCell
print(currentCell.textLabel?.text)
txtField.text = currentCell.textLabel?.text
UserAddress = txtField.text
}