微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

在Swift中基于超时创建函数

如何解决在Swift中基于超时创建函数

我想创建一个在相当长的时间内返回内容函数。如果超时,该函数应返回一些预定义的值。例如,

func loginFunc(timeOut: Int) {
        
    Login.getUSerAuthenticaiton(email: "abc@zyf.com",password: "123456789",completion: {_,_ in 
            print("Reponse")
    })
}

调用函数之类的

loginFunc(timeOut: 10)

意味着,该函数应运行10秒钟,然后返回nil。确保这将是API调用或正常的功能

解决方法

第一种方式:

 let timer = Timer.scheduledTimer(withTimeInterval: 10,repeats: false) { timer in
       print("Time is Over")
    }
    Login.getUSerAuthenticaiton(email: "abc@zyf.com",password: "123456789",completion: {_,_ in
            print("Reponse")
        timer.invalidate()
    })

如果响应速度超过10秒并且计时器回调从未触发,您可以使计时器无效

第二种方式:

func loginFunc(timeOut: Int) {
    
    var isResponseGet = false
    
    let timer = Timer.scheduledTimer(withTimeInterval: 10,repeats: false) { timer in
        if isResponseGet {
            print("<##>Already get a rtesponse")
        } else {
            print("10 secs left and i didn't get a response")
        }
    }
    Login.getUSerAuthenticaiton(email: "abc@zyf.com",_ in
            print("Reponse")
        isResponseGet = true
    })
}

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。