Frage

I thought it was viewWillAppear function, but it did not.

Is not exist unlock callback function in iOS?

War es hilfreich?

Lösung

The methods called when locking the device with your app currently in foreground are in order

-[MyAppDelegate applicationWillResignActive:]
-[MyAppDelegate applicationDidEnterBackground:]
-[MyAppDelegate applicationWillEnterForeground:]
-[MyAppDelegate applicationDidBecomeActive:]

The first two are called when locking, the others when unlocking

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top