The app will be wake up from killed status by silent notification or not?
This is a question for years, from my test. It will wake up. Here the wake up means it will call the "didFinishLaunchingWithOptions" method. But we can not see the app in the "recent apps" list after switching home-screen up.
So any Apple dev can give me a detailed explain for this?
Depends on what you mean by kill status, and who killed the app.
An app could be "no longer running" due to several reasons. It could have been terminated by the system to free resources. Or the device may have been rebooted, and the app has not been launched yet. Or, the user may have killed it by swiping it away.
If the cause of the "killed status" is the last one, because the user has killed it, a silent notification will not cause the app to be relaunched (as you say, "wake up"). Period!
There are certain exceptions to this, for example if you are debugging your app at the time via Xcode, then the system will allow the app to "wake up", so you can continue debugging.
The important thing to understand about the "recent apps" list is, that only shows apps that were manually launched by the user. If the app is executed by Xcode, or launched in the background by another system event, the app could be running (or suspended in memory), but will not show up in the recent apps list. The recent apps list is not a list of running apps. It is a list of apps that the user launched.
But to simplify the answer, a silent notification will not wake up an app that was killed by the user by swiping it away. Any observations counter to that must have another explanation.
Argun Tekant / DTS Engineer / Core Technologies