如何发送收到的推送通知

时间:2017-02-02 11:06:24

标签: ios swift3

我收到推送通知,如何将其发送到带徽章的设备? 只是一个简单的文本标题体徽章。

func application(_ application: UIApplication, didReceive notification: UILocalNotification) {
    print("Push notification received:")
}

Swift 3我的环境

1 个答案:

答案 0 :(得分:0)

如果您想在应用程序打开时更新徽章编号,可以使用applicationIconBadgeNumberDocumentation here

如果您希望在应用程序关闭时更新徽章,则需要修改服务器上发送推送以包含徽章编号的代码。

您可以查看答案posted here