ios - 使用 Amazon SNS 向 iOS 发送推送通知并使用本地化格式化字符串处理它们
<p><p>我正在尝试从 Amazon SNS 发送 iOS 推送通知并且我能够做到,但我想使用本地化格式的字符串发送通知并以正确的语言推送消息。</p>
<p>我正在使用 XCode 7.0.1 并使用 iPhone 5S 进行开发,但我认为这不是重点。</p>
<p>这就是我要发送的信息:</p>
<pre><code>{
"default":"This is the default Message",
"APNS_SANDBOX":"{ "aps" : {"alert" : {
"loc-key" : "GAME_PLAY_REQUEST_FORMAT",
"loc-args" : [ "Jenna", "Frank"]
},"data": { "type": "dashboard", "opponentName":"Juan ","gameCategory":"Multimedia","gameType":"combo","ugid":"123456789" }, "badge" : 9,"sound" :"default"}}"
}
</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&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]