Sending push notifications between devices using Parse and Swift

I have configured my application to receive push notifications via Parse, which I can send from the Parse dashboard, but I would like to send notifications between devices, specifically when a button is pressed from any device. I can't find any documentation about this ... I wonder if anyone has any experience with this.

0


source to share


1 answer


You have to store the current user in the install class and then send a push notification using PFInstallation Query and PFPush.



Please refer to the parsing documentation for more details for sending notifications. https://parse.com/docs/ios/guide#push-notifications or link to this Swift Parse site : How to send a notification to a specific device / objectId

+1


source







All Articles