菜鸟教程小白 发表于 2022-12-12 09:50:25

ios - Xamarin.Forms iOS 无法自定义通知


                                            <p><p>我一直在学习以下位置的教程:<a href="https://azure.microsoft.com/en-us/documentation/articles/partner-xamarin-mobile-services-xamarin-forms-get-started-push/" rel="noreferrer noopener nofollow">https://azure.microsoft.com/en-us/documentation/articles/partner-xamarin-mobile-services-xamarin-forms-get-started-push/</a>尝试获取推送通知以在我的 Xamarin.Forms 应用程序中工作。 </p>

<p>我已经让他们在 Android 上运行,但我在 iOS 上遇到了一个错误 - 我需要在实际发出通知之前自定义文本(来自手机),但我不能在 ios 上运行,因为应用在后台运行,没有调用 ReceivedRemoteNotification。</p>

<p>这与我的通知处理代码类似:</p>

<pre><code>public override void ReceivedRemoteNotification(UIApplication application, NSDictionary userInfo)
{
    NSObject inAppMessage;

    bool success = userInfo.TryGetValue(new NSString(&#34;inAppMessage&#34;), out inAppMessage);

    if (success)
    {
      //change the text that is displayed
      string newNotText = ModifyNotification(inAppMessage.ToString());

      var alert = new UIAlertView(&#34;Got push notification&#34;, newNotText, null, &#34;OK&#34;, null);
      alert.Show();
    }
}
</code></pre>

<p>如何自定义在 iOS 上收到的通知?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>iOS Push 和 GCM 的工作方式不同,GCM 让 App 处理通知并启动本地通知,iOS 没有。</p>

<p>iOS 仅通知您的应用通知存在,但有一种解决方法。</p>

<p>在 iOS 上,您可以使用用户看不到的静默通知,但您会收到 ReceivedRemoteNotification 回调</p>

<p>您可以在此处阅读更多信息:<a href="https://developer.apple.com/library/ios/documentation/NetworkingInternet/Conceptual/RemoteNotificationsPG/Chapters/ApplePushService.html" rel="noreferrer noopener nofollow">https://developer.apple.com/library/ios/documentation/NetworkingInternet/Conceptual/RemoteNotificationsPG/Chapters/ApplePushService.html</a> </p>

<p>本文档告诉您以下内容:</p>

<p>值为 1 的 content-available 属性让远程通知充当“静默”通知。当静默通知到达时,iOS 会在后台唤醒您的应用程序,以便您可以从服务器获取新数据或进行后台信息处理。用户不会被告知因静默通知而产生的新信息或更改信息,但他们可以在下次打开您的应用时了解这些信息。</p>

<p>因此,如果您的通知包含值为 1 的“内容可用”,它将保持沉默,您可以在此之后启动自己的本地通知。</p>

<p>做好准备,这在任何方面都不可靠,如果您不是特殊特权应用程序(如 VOIP),您将无法在 iOS 上以可靠的方式做您想做的事</p>

<p>后端示例:</p>

<p>只需像在您使用的教程中那样更改模板变量:</p>

<pre><code>const string template = &#34;{\&#34;aps\&#34;:{\&#34;content-available\&#34;:\&#34;1\&#34;,\&#34;alert\&#34;:\&#34;$(message)\&#34;}}&#34;;
</code></pre>

<p>因为不够清楚,如果您不想收到任何通知,则不应为通知使用警报或声音属性</p>

<pre><code>const string template = &#34;{\&#34;aps\&#34;:{\&#34;content-available\&#34;:\&#34;1\&#34;,\&#34;someproperty\&#34;:\&#34;propertyvalue\&#34;}}&#34;;
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - Xamarin.Forms iOS 无法自定义通知,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/33850182/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/33850182/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - Xamarin.Forms iOS 无法自定义通知