6
Làm cách nào để tôi gửi_s_sync, Clark_async, Clark_after, v.v. trong Swift 3, Swift 4 và hơn thế nữa?
Tôi có rất nhiều mã trong các dự án Swift 2.x (hoặc thậm chí 1.x) trông như thế này: // 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()) …