我发现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应用程序发送推送通知?(即点击按钮)
我有要将消息发送到的设备的设备令牌。
对我来说这将是一个很大的帮助。