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

ios - 使用 Amazon SNS 向 iOS 发送推送通知并使用本地化格式化字符串处理它们


                                            <p><p>我正在尝试从 Amazon SNS 发送 iOS 推送通知并且我能够做到,但我想使用本地化格式的字符串发送通知并以正确的语言推送消息。</p>

<p>我正在使用 XCode 7.0.1 并使用 iPhone 5S 进行开发,但我认为这不是重点。</p>

<p>这就是我要发送的信息:</p>

<pre><code>{
   &#34;default&#34;:&#34;This is the default Message&#34;,
   &#34;APNS_SANDBOX&#34;:&#34;{ &#34;aps&#34; : {&#34;alert&#34; : {
      &#34;loc-key&#34; : &#34;GAME_PLAY_REQUEST_FORMAT&#34;,
      &#34;loc-args&#34; : [ &#34;Jenna&#34;, &#34;Frank&#34;]
    },&#34;data&#34;: { &#34;type&#34;: &#34;dashboard&#34;, &#34;opponentName&#34;:&#34;Juan &#34;,&#34;gameCategory&#34;:&#34;Multimedia&#34;,&#34;gameType&#34;:&#34;combo&#34;,&#34;ugid&#34;:&#34;123456789&#34; }, &#34;badge&#34; : 9,&#34;sound&#34; :&#34;default&#34;}}&#34;
}
</code></pre>

<p>它可以发送,但它在设备中没有改变,消息是“GAME_PLAY_REQUEST_FORMAT”,所以我想显示的是我的 Localizable.strings 文件中这个键的值:</p>

<p><code>"GAME_PLAY_REQUEST_FORMAT"= "%@ 和 %@ 邀请你玩";</code></p>

<p>我很高兴你可以在苹果的文档(<a href="https://developer.apple.com/library/ios/documentation/NetworkingInternet/Conceptual/RemoteNotificationsPG/Chapters/ApplePushService.html#//apple_ref/doc/uid/TP40008194-CH100-SW21" rel="noreferrer noopener nofollow">https://developer.apple.com/library/ios/documentation/NetworkingInternet/Conceptual/RemoteNotificationsPG/Chapters/ApplePushService.html#//apple_ref/doc/uid/TP40008194-CH100-SW21</a>)中做到这一点</p>

<p>希望任何人都可以提供帮助。</p>

<p>谢谢</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>我会把答案贴在这里让大家看到。</p>

<p>@TàTruhoada 是的,您需要在有效负载中使用 loc-keys。您可以在以下链接中查看它是如何工作的:<a href="https://developer.apple.com/library/content/documentation/NetworkingInternet/Conceptual/RemoteNotificationsPG/CreatingtheNotificationPayload.html#//apple_ref/doc/uid/TP40008194-CH10-SW1" rel="noreferrer noopener nofollow">Creating the Remote Notification Payload</a> </p>

<p>使用 loc-key 传递在应用程序的 Localizable.strings 文件中定义的 key 。 iPhone 查找 key 并将其替换为为当前本地化找到的字符串。
您可以在 Erica Sadun 的此链接中查看更多信息:<a href="http://www.informit.com/articles/article.aspx?p=1433733&amp;seqNum=5" rel="noreferrer noopener nofollow">Building Notification Payloads
</a> </p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 使用 Amazon SNS 向 iOS 发送推送通知并使用本地化格式化字符串处理它们,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/33258844/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/33258844/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 使用 Amazon SNS 向 iOS 发送推送通知并使用本地化格式化字符串处理它们