Can Apple's silent push notifications launch my app in the background?
According to Apple's documentation I can register for silent notification by adding "content-available" = 1 key-value in aps payload dictionary. I want my app to wake up in background when a silent notification arrives. I set App downloads content in response to push notifications value to Required background modes in my info.plist This is my payload dictionary {"aps": { "alert":"Notification alert","badge":1,"sound":"default","content-available":1 } } I am getting callbacks in -(void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo