In the Google Places AutoComplete Address i am Getting the Predictions via a Text Field but it is not saved in the Text Box How we can Do it in swift/ios
In the Google Places AutoComplete Address i am Getting the Predictions but not saved in the Text Box
Asked
Active
Viewed 34 times
-2
1 Answers
0
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
}

Govind Wadhwa
- 904
- 8
- 16