search

Home  >  Q&A  >  body text

objective-c - 闭包导致的时间问题怎么解决?

例如

func hello() -> Bool {
    var result = false
    httpRequestWithCompletionHandler({ is404 in
        result = is404
    })
    return result
}

这个函数的返回值永远是 false,因为 closure 是异步执行的
怎么在调用这个函数的时候,得到真正的返回值呢?
注: result 必须定义在函数体内,不能定义在函数体外

伊谢尔伦伊谢尔伦2879 days ago733

reply all(2)I'll reply

  • 大家讲道理

    大家讲道理2017-04-24 09:12:38

    var result_cb = function (result) { alert(result) };
    
    function hello(cb) {
        httpRequestWithCompletionHandler(is404) {
            cb(is404);
        }
    }
    
    hello(result_cb);
    

    Like this?

    reply
    0
  • 迷茫

    迷茫2017-04-24 09:12:38

    GO lang ? Asynchronously executed functions can only obtain values ​​through callbacks, so the results cannot be obtained directly by returning bool from hello.

    reply
    0
  • Cancelreply