问题
i want to achieve above screenshot output in one of my app below is the sample code i am looking at in developers website.
https://developers.google.com/places/ios-api/placepicker
GMSPlacePickerConfig *config = [[GMSPlacePickerConfig alloc] initWithViewport:nil];
GMSPlacePickerViewController *placePicker = [[GMSPlacePickerViewController alloc] initWithConfig:config];
placePicker.delegate = self;
[self presentViewController:placePicker animated:YES completion:nil];
GMSPlacePickerViewController is not visible to class it seems.
below attached is the error i am getting while putting this code to my class.
Let me know if anyone of you have worked on this.
Thanks in advance.
来源:https://stackoverflow.com/questions/49856173/i-want-to-display-google-place-picker-for-restaurants-using-gmsplacepickerviewco