ekramramu
5/30/2018 - 7:22 PM

Gcd-simple-async.swift

// Async Custom Queue
        queue.async {
            for i in 0..<10 {
                print("Custom Green Love: 💚",i)
            }
        }
        //Main Queue
        for i in 100..<110 {
            print("General Lover : ❤️",i)
        }