Swift 3 – How to make timer work in background

you can go to Capabilities and turn on background mode and active Audio. AirPlay, and picture and picture.

It really works . you don’t need to set DispatchQueue .
you can use of Timer.

Timer.scheduledTimer(withTimeInterval: 1, repeats: true) { (t) in

   print("time")
}

Leave a Comment