-2

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

Community
  • 1
  • 1
Govind Wadhwa
  • 904
  • 8
  • 16

1 Answers1

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