简体   繁体   中英

Push Notification iOS with Parse

I've been looking around and read the documentation on Parse that has been provided by Parse. I've seen that push notifications may require a backend coding implementation such as REST API & Cloud Code.I would like to know is there any possibilities to restrain to any backend coding activities.

I'm building medical social app which an app requires to push notification to a specific user(doctor sends message privately to specific patient).That being said, do I need backend coding activities?

No, you could use Client Push instead.

Something like that:

let push = PFPush()
push.setMessage("Hello, test push!")
push.sendPushInBackground()

Link to documentation.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM