Twilio IP消息传递:iOS消息传递客户端API中的[client handleNotification]有什么意义?

时间:2016-03-15 07:59:15

标签: ios twilio messaging

位于:

https://media.twiliocdn.com/sdk/ios/ip-messaging/releases/0.13.6/docs/Classes/TwilioIPMessagingClient.html#//api/name/handleNotification

我正在构建一个twilio IP消息应用程序,无法解构该功能的使用。文档是神秘的和示例

https://github.com/twilio/ip-demo-ios/search?utf8=%E2%9C%93&q=handlenotification

也不清楚。

1 个答案:

答案 0 :(得分:1)

Twilio开发者传道者在这里。

当您的应用程序收到来自APNS的传入通知时,应使用handleNotification方法。它是一个便捷函数,可以解析通知并创建所有相关的SDK对象。

在演示中,您可以看到notifications are received by the AppDelegate(如果需要,可以将不同的通知指向应用程序的不同部分),passed on to the IPMessagingManager here,最后passed into the IPMessagingClient via handleNotification in the part you pointed out

让我知道这是否有帮助。