VoIP push notification that automatically opens the application, even if the application does not work in the background, is this possible in iOS?

I want to know that if my application does not work in the background and presses a notification, my application will automatically start.
This is a kind of emergency message that comes and opens my application, even if the application does not work in the background.

+2
source share
5 answers

Please refer to this link, it works for me

PushKit implementation and development testing

VoIP , ios 8 .

:)

+3

, .

+1

. , , appdelegate

- (void)application:(UIApplication *)application didReceiveRemoteNotification: (NSDictionary *)userInfo {
//notification reached. open app or do something
}
0

, . PushKit Voip Push- CallKit . , IOS . , , uicontroller.

0

Source: https://habr.com/ru/post/1611825/


All Articles