位于:
我正在构建一个twilio IP消息应用程序,无法解构该功能的使用。文档是神秘的和示例
https://github.com/twilio/ip-demo-ios/search?utf8=%E2%9C%93&q=handlenotification
也不清楚。
答案 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。
让我知道这是否有帮助。