菜鸟教程小白 发表于 2022-12-12 16:56:54

ios - 应用程序运行时的Delphi Apple推送通知


                                            <p><p>我正在使用 Delphi Rad Studio Seattle 10 构建一个 iOS 应用程序。
此应用程序必须接收推送通知。这对我有用,但是当应用程序运行时,它确实会收到任何通知。我做错了什么?</p>

<p>代码如下:</p>

<pre><code>var
APushService: TPushService;
AServiceConnection: TPushServiceConnection;
ADeviceID, AdeviceToken: String;

APushService := TPushServiceManager.Instance.GetServiceByName(TPushService.TServiceNames.APS);
AServiceConnection := TPushServiceConnection.Create(APushService);
AServiceConnection.Active := True;

ADeviceID := APushService.DeviceIDValue;
AdeviceToken := APushService.DeviceTokenValue;
</code></pre>

<p>使用此代码,应用会收到推送通知,但在运行时不会收到。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>这是设计使然。当应用程序在前台时,推送通知会直接发送到应用程序。如果您希望在这种情况下通知用户,您必须在您的应用中处理此问题。</p>

<p>仅当应用程序未在前台运行时,才会通过警报或任何配置向用户显示消息。然后,用户可以通过点击消息来启动应用程序。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 应用程序运行时的Delphi Apple推送通知,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/33567740/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/33567740/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 应用程序运行时的Delphi Apple推送通知