I want get data from url, but until process complete, i want show loading icon
I use this code but not work for me
DispatchQueue.global(qos: .background).async {
// show loading icon
// start get data
DispatchQueue.main.async {
// remove loading icon
}
}