菜鸟教程小白 发表于 2022-12-12 21:50:29

c# - 单点触控 : getting NSDictionary value


                                            <p><p>我有远程通知字典,但如何取出 AlertBody?</p>

<pre><code>NSDictionary remoteNotification = options
    as NSDictionary;
</code></pre>

<p>来自远程通知?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>这对我有用:</p>

<p>发送推送通知:</p>

<pre><code>oPushService.QueueNotification(NotificationFactory.Apple()
    .ForDeviceToken(&#34;YourDeviceTokenASDASD!@#SDF&#34;)
    .WithCustomItem(&#34;MyCustomItem&#34;,&#34;Item 3&#34;)
    .WithAlert(&#34;Alert pop message&#34;)
    .WithSound(&#34;default&#34;)
    .WithBadge(7)));
</code></pre>

<p>在客户端:</p>

<pre><code>void processNotification(NSDictionary options, bool fromFinishedLaunching) {                  
(options != null &amp;&amp; options.ContainsKey(new NSString(&#34;aps&#34;))) {   
    NSDictionary alertMsg = options;
    NSObject codeCustomValue = alertMsg;
    // .... and continue your code....}
</code></pre>

<p>希望对你有帮助!</p>

<p>阿曼多</p></p>
                                   
                                                <p style="font-size: 20px;">关于c# - 单点触控 : getting NSDictionary value,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/11336527/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/11336527/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: c# - 单点触控 : getting NSDictionary value