Perguntas com a marcação «dispatch-async»

6
Como envio dispatch_sync, dispatch_async, dispatch_after etc. no Swift 3, Swift 4 e além?
Eu tenho muito código nos projetos Swift 2.x (ou até 1.x) que se parecem com isso: // Move to a background thread to do some long running work dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0)) { let image = self.loadOrGenerateAnImage() // Bounce back to the main thread to update the UI dispatch_async(dispatch_get_main_queue()) { self.imageView.image = …

3
Noções básicas sobre dispatch_async
Tenho uma pergunta em torno deste código dispatch_async(dispatch_get_global_queue( DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{ NSData* data = [NSData dataWithContentsOfURL: kLatestKivaLoansURL]; [self performSelectorOnMainThread:@selector(fetchedData:) withObject:data waitUntilDone:YES]; }); O primeiro parâmetro desse código é dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0) Estamos solicitando que esse código execute tarefas seriais na fila global cuja definição em si é que ele retorne a …

Ao utilizar nosso site, você reconhece que leu e compreendeu nossa Política de Cookies e nossa Política de Privacidade.
Licensed under cc by-sa 3.0 with attribution required.