I need to know if there is an event in the AppDelegate.swift that is triggered when the phone has been locked because of the autolock time exceeded
I have tried to use the applicationDidEnterBackground method but It is not triggered because in that case the app is still in foreground
You can implement
applicationWillResignActive
method inAppDelegate
and check ifbrightness
is changed to 0.0 as below,