0

I know how to search for local establishments but I'm curious if it's possible to display more than just 10 results from the search?

Here's my code to perform the search.

    let request = MKLocalSearchRequest()
    request.naturalLanguageQuery = "Bars"
    request.region = MKCoordinateRegionMakeWithDistance((currentLocation?.coordinate)!, 400, 400)

    let search = MKLocalSearch(request: request)
    search.start(completionHandler: {(response, error) in
        if(error != nil){
            print("Error occured in search \(error?.localizedDescription)")
        }
        else if(response!.mapItems.count == 0){
            print("No matches found")
        }
        else{
            for item in response!.mapItems{
mocode10
  • 589
  • 1
  • 6
  • 23
  • Apple has made it clear: The server is a shared resource, with limits imposed. Accept them. If you try to overdo it you'll be throttled. – matt Mar 25 '17 at 03:35
  • So there is no way to obtain more than 10 results? – mocode10 Mar 25 '17 at 19:09

0 Answers0