菜鸟教程小白 发表于 2022-12-12 11:41:01

ios - Parse.com 响应推送通知


                                            <p><p>我想在我的应用程序中通过推送通知设置响应。 </p>

<p>用户 A 向用户 B 发送消息。</p>

<p>用户 B(通过推送)打开应用到新页面。</p>

<p>用户 B 向用户 A 发送响应(作为推送)。</p>

<p>现在我可以打开该页面,但我不确定如何获取我需要的数据。</p>

<p>这是我在第一次推送时从 Parse 中得到的:</p>

<pre><code>userInfo: {
    aps =   {
      alert = &#34;demo says HELLO WORLD&#34;;
    };
</code></pre>

<p>在这种情况下,demo 是发送第一个推送的用户的用户名。我想得到它,以便用户 B 的应用知道将回复发送给谁。</p>

<p>这是我的推送代码:</p>

<pre><code>    PFPush *push = [ init];
    ;
    .username]];
    ;
</code></pre></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>您必须从 AppDelegate 处理此问题。有两种方法可以从推送通知中接收数据。 </p>

<pre><code>//Receive Push Notification when the app is active in foreground or background
- (void)application:(UIApplication *)application
         didReceiveRemoteNotification:(NSDictionary *)userInfo {

if(userInfo){
   //TODO: Handle the userInfo here
   }
}

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
    //Get the push notification when app is not open
    NSDictionary *remoteNotif = ;

    if(remoteNotif){
      ;
    }

    return YES;
}

-(void)handleRemoteNotification:(UIApplication*)application userInfo:(NSDictionary*)userInfo{

    if(userInfo){
       //TODO: Handle the userInfo here
    }
}
</code></pre>

<p>以下更新答案:-</p>

<p>在这种情况下,我认为你应该使用 <code>setData</code> 来代替 <code>setMessage</code>。</p>

<pre><code>NSString * message =.username];
NSString * userID =@&#34;userid&#34;; //TODO: set Your userID here

NSMutableDictionary * dataDict = [init];
;
;

PFPush *push = [ init];
;
;
;
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - Parse.com 响应推送通知,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/25560329/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/25560329/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - Parse.com 响应推送通知