在我的应用程序中,我有一个函数,使一个NSRURLSession和发出一个NSURLRequest使用
sesh.dataTaskWithRequest(req,completionHandler: {(data,response,error)
在这个任务的完成块,我需要做一些计算,添加一个UIImage到调用viewcontroller。我有一个func调用
func displayQRCode(receiveAddr,withAmountInBTC:amountBTC)
这是UIImage增加计算。如果我尝试在完成块中运行视图添加代码,Xcode会抛出一个错误,说我不能在后台进程中使用布局引擎。所以我发现一些代码在SO,试图在主线程排队一个方法:
let time = dispatch_time(DISPATCH_TIME_NOW,Int64(0.0 * Double(NSEC_PER_MSEC))) dispatch_after(time,dispatch_get_main_queue(),{ let returned = UIApplication.sharedApplication().sendAction("displayQRCode:",to: self.delegate,from: self,forEvent: nil) })
但是,我不知道如何添加参数“receiveAddr”和“amountBTC”到这个函数调用。我将如何做到这一点,或者有人建议一个最佳的方式添加一个方法调用应用程序的主队列?
只是写在完成处理程序。不需要使用dispatch_after
原文链接:https://www.f2er.com/swift/321519.htmldispatch_async(dispatch_get_main_queue(),{ let delegateObj = UIApplication.sharedApplication().delegate as YourAppDelegateClass delegateObj.addUIImage("yourstring") })
Swift 3:
DispatchQueue.main.async { let delegateObj = UIApplication.sharedApplication().delegate as YourAppDelegateClass delegateObj.addUIImage("yourstring") }
也用于在主队列之后分派
DispatchQueue.main.asyncAfter(deadline: .now() + 0.1) { // your code here }
用您的委托类替换YourAppDelegateClass