1

I am going to display autocomplete city using google API.

I am following this https://developers.google.com/places/ios-api/autocompleteenter link description here doc. for implantation

but when I have tried to confirm that protocol then I got following error. Cannot find protocol declaration for 'GMSAutocompleteViewControllerDelegate'?

Appreciate for help.

Vinod Jadhav
  • 1,055
  • 1
  • 15
  • 37
  • 1
    Perhaps you have an older version of the pod? Try `pod update GoogleMaps`. (http://stackoverflow.com/a/34645528/806600) – spiv Feb 04 '16 at 00:07
  • @spiv I have updated google map , using po update still it is not working, now I have googlemap 1.11.1 version – Vinod Jadhav Feb 04 '16 at 10:53

1 Answers1

1

I have resolved this problem

$(inherited) add in framework search path.

  • Add following in header search path.

$(inherited)

"${PODS_ROOT}/Headers/Public"

"${PODS_ROOT}/Headers/Public/GoogleMaps"

"${PODS_ROOT}/Headers/Public/GoogleMaps/GoogleMaps"

Vinod Jadhav
  • 1,055
  • 1
  • 15
  • 37