Push Notifications without alert

前端 未结 6 1849
名媛妹妹
名媛妹妹 2021-01-01 04:56

Can I get push notifications without alert view? The idea in what service for game will send notifications as response for change game state (may be game state will store in

6条回答
  •  挽巷
    挽巷 (楼主)
    2021-01-01 05:44

    Use content-available property:

    The aps dictionary can also contain the content-available property. The content-available property with a value of 1 lets the remote notification act as a “silent” notification. When a silent notification arrives, iOS wakes up your app in the background so that you can get new data from your server or do background information processing. Users aren’t told about the new or changed information that results from a silent notification, but they can find out about it the next time they open your app.

    https://developer.apple.com/library/ios/documentation/NetworkingInternet/Conceptual/RemoteNotificationsPG/Chapters/ApplePushService.html

提交回复
热议问题