如何使用解析框架从应用程序发送推送通知?

时间:2013-10-10 13:47:14

标签: ios iphone objective-c push-notification parse-platform

我发现a tutorial向我的应用安装的所有设备发送推送通知。我成功地从parsing.com发送消息

但是,我需要从ios应用程序本身发送消息。

在网站上,他们提到了一个代码,

PFQuery *pushQuery = [PFInstallation query];
[pushQuery whereKey:@"deviceType" equalTo:@"ios"];

// Send push notification to query
[PFPush sendPushMessageToQueryInBackground:pushQuery
                           withMessage:@"Hello World!"];

我无法得到代码的确切内容。我花了一天时间。

有谁可以告诉我,如何从ios应用程序发送推送通知?(即点击按钮)

我有要将消息发送到的设备的设备令牌。

对我来说这将是一个很大的帮助。

0 个答案:

没有答案