Xcode 9中缺少Voip(IP语音)

Var*_*Dev 17 voip ios pushkit

我在我的应用程序中使用pushKit但是didUpdatePushCredentials委托从未调用过.xcode 9没有Voice over IP

功能 - >背景模式 - > IP语音

在此输入图像描述

我正在关注此链接.. 实现pushkit

证书再次生成但不起作用.

Ser*_*bul 30

尽管Xcode 9正式发布,但仍然没有VoIP功能.

我通过打开Info.plist作为源代码并手动将"voip"添加到UIBackgroundModes来解决了我的问题.

<key>UIBackgroundModes</key>
<array>
    <string>audio</string>
    <string>voip</string>
    <string>fetch</string>
    <string>remote-notification</string>
</array>
Run Code Online (Sandbox Code Playgroud)