菜鸟教程小白 发表于 2022-12-12 18:47:13

ios - 推送通知传递和关闭回调


                                            <p><p>当应用不活动时,我们可以在推送通知发送或关闭时从客户端进行服务调用吗? </p>

<p>APNS 是否还提供任何有关通知是否在个人级别传递的信息,是否有任何 API 可以用来查询传递状态报告?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>是的,如果您将 <code>content-available</code> 标志发送到 <code>aps</code> 字典中的 <code>1</code>,您可以检测到远程通知的传递。如果设置了key,就会调用AppDelegate的<code>application:didReceiveRemoteNotification:fetchCompletionHandler:</code>方法。</p>
<p>此外,从 iOS 10 开始,您还可以检测远程通知的消失。为此,您需要实现 UserNotifications 框架。</p>
<p>您需要执行以下步骤:</p>
<ol>
<li><p>使用 iOS 10 API 注册远程通知的类别。
您需要检查 <code>[ setNotificationCategories]</code> 方法是否相同。见 <a href="https://developer.apple.com/documentation/usernotifications/unusernotificationcenter" rel="noreferrer noopener nofollow">https://developer.apple.com/documentation/usernotifications/unusernotificationcenter</a> </p>
</li>
<li><p>iOS 10 引入了一个名为 <code>UNNotificationCategory</code> 的新类,用于封装类别实例。您需要在类别实例上设置 <code>CustomDismissAction</code> 才能接收解除回调。</p>
</li>
</ol>
<p>见 <a href="https://developer.apple.com/documentation/usernotifications/unnotificationcategory" rel="noreferrer noopener nofollow">https://developer.apple.com/documentation/usernotifications/unnotificationcategory</a> </p>
<ol 开始=“3”>
<li>通过 <code>userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:</code> 方法的实现来实现 <code>UNUserNotificationCenterDelegate</code> 协议(protocol)。如果您执行上述步骤,此方法将接收对解除操作的回调。</li>
</ol>
<p>见 <a href="https://developer.apple.com/documentation/usernotifications/unusernotificationcenterdelegate" rel="noreferrer noopener nofollow">https://developer.apple.com/documentation/usernotifications/unusernotificationcenterdelegate</a> </p>
<p>将您的委托(delegate)设置为 UserNotificationCenter - <code>[.delegate = your_delegate_implementation</code></p>
<ol start="4">
<li>使用负载中的 <code>CustomDismissAction</code> 属性设置类别。</li>
</ol>
<pre><code>    {
      &#34;aps&#34;: {
            &#34;alert&#34;: &#34;joetheman&#34;,
            &#34;sound&#34;: &#34;default&#34;,
            &#34;category&#34;: &#34;my-custom-dismiss-action-category&#34;,
            &#34;content-available&#34;:1
      },
      &#34;message&#34;: &#34;Some custom message for your app&#34;,
      &#34;id&#34;: 1234
}
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 推送通知传递和关闭回调,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/35764425/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/35764425/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 推送通知传递和关闭回调