Why does logging backgroundTimeRemaining show a wrong/big number even though app was moved to background?
问题 I'm logging my UIApplication.shared.backgroundTimeRemaining but the number is huge. It's almost 200 digits. This is how I'm logging it. os_log("Lat: %f | Long: %f | RemainingTime: %f ", log: log, type: .default, location.coordinate.latitude, location.coordinate.longitude, UIApplication.shared.backgroundTimeRemaining) I thought there is something wrong with the format of my logging so I also tried placing a breakpoint and printing it but still the number that it logs is the same huge number. I