Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
emes0013198y1. Create app that is setup to receive push. Deploy in App Store.
2. Setup web app/service that is scheduled to run at 5am to deliver notification payload to a list of recipients.
3. ???
4. Profit! -
prkshar58yFire local notifications instead. No need of of remote server.
UILocalNotifications is there for this purpose only -
@prkshar man, i searched all over internet and i cant find what i want. I want to fire notification everyday with different message that is set to specific date
Eg:
January 1: happy Newyear
December 25: happy christmas -
prkshar58yYou will need to add all these dates/items in your app itself, if you want to do it without setting a remote server.
A quick and dirty way would be to register for all dates for coming one year on app first launch. And in subsequent launches check for registered notification events and keep on adding/removing them as per requirements -
@prkshar man all tutorial in internet shows how to fire 1 notification and i have done that
-
emes0013198y@Ashish117 then I think it's a perfect time to write a tutorial to help those that come after you!
-
prkshar58y@Ashish117 can you explain why it won't work?
Iterating over your data source and scheduling notification for each event should work
Does anyone know whats the concept for creating an ios app that fire notification everyday at 5am with different message set for each day. #xcode #swift
undefined