^^ is my error message when I write this code:
autocompleteController.delegate = selfThe logical fix for me would be to update my class as following:
class SearchResultsController: UITableViewController, UISearchBarDelegate, UISearchResultsUpdating, GMSAutocompleteViewControllerDelegateBut then I get an error message saying "Type 'SearchResultsController' does not conform to protocol 'GMSAutocompleteViewControllerDelegate.'"
What am I missing?