有没有办法将我最近的搜索保存到Google Place Autocomplete iOS控件上,并在初始加载时将其显示在结果控制器上?

最佳答案

@interface ViewController ()
{
   NSMutableArray *arrMutData;
}

- (void)resultsController:(GMSAutocompleteResultsViewController *)resultsController didAutocompleteWithPlace:(GMSPlace *)place{
   arrMutData = [[NSMutableArray alloc] init];
  [arrMutData addObject:place.name];
}

在上述Google Place Autocomplete委托方法中,您将获得最近的搜索。您可以在NSMutableArray中添加最近的搜索。
并且,在您初次加载时将它们显示在结果控制器上。

关于ios - 如何在iOS版Google地方信息自动完成功能上保存最近的搜索?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/42826009/

10-12 02:33