10

我正在尝试通过CLLocation反向结构定义城市名称...方法请求CLGeocoder对象,但我不知道如何设置超时?如果没有互联网连接请求时间可能需要大约 30 秒 - 这太长了......

4

2 回答 2

5

据我所知,没有任何内置功能可以处理这个问题。我已经开始使用以下解决方案。抱歉,它是用 Swift 编写的,我不会说一口流利的 Objective-C。

这会给你 2 秒的超时时间

func myLookupFunction(location: CLLocation)
{
    let timer = NSTimer(timeInterval: 2, target: self, selector: "timeout:", userInfo: nil, repeats: false);
     geocoder.reverseGeocodeLocation(location){
        (placemarks, error) in
        if(error != nil){
          //execute your error handling
        }
        else
        {
          //execute your happy path
        }
    }
    NSRunLoop.currentRunLoop().addTimer(timer, forMode: NSDefaultRunLoopMode)
}

func timeout(timer: NSTimer)
{
    if(self.geocoder.geocoding)
    {
        geocoder.cancelGeocode();
    }
}

超时触发后,将执行您的回调并调用错误路径。

您将收到详细信息错误:

  • 代码 = 10
  • Localized Description(English) = 操作无法完成。(kCLErrorDomain 错误 10。)

希望这可以帮助。

于 2015-12-21T05:57:06.287 回答
1

@JTango18 在 Swift 3 中的回答:

func myLookupFunction(location: CLLocation)
{
    let timer = Timer(timeInterval: 2, target: self, selector: #selector(self.timeout), userInfo: nil, repeats: false);
    geocoder.reverseGeocodeLocation(location){
        (placemarks, error) in
        if(error != nil){
            //execute your error handling
        }
        else
        {
            //execute your happy path
        }
    }
    RunLoop.current.add(timer, forMode: RunLoopMode.defaultRunLoopMode)
}

func timeout()
{
    if (geocoder.isGeocoding){
        geocoder.cancelGeocode()
    }
}
于 2017-05-30T16:02:42.367 回答