I want implement a geo location notification in iOS, but just in a specific date and time.

The notification will only be launched if the user is in a certain location and at a certain date and time.

Ex.: The user is in Rio de Janeiro and is 12 o'clock.

Does anyone know how to merge these two conditions to launch a notification?

link|improve this question
Do you want this to fire when your App is running, or even when it's closed ? – Lefteris May 8 at 12:37
feedback

1 Answer

There is nothing built in that I know of -- you will have to code the logic yourself. So you will simply get geo updates from CoreLocation, and you can create a timer to give you time updates, then write some logic that execs periodically and, if the time/place matches your business rules, fire the notification. Note that the app will have to be running to accomplish this. You could send a push notification from an external server, but that server must know where the phone is, and your app must tell it.

Does this help?

link|improve this answer
I think it can be more simple, I will search more about this. Thanks, anyway. – user1229671 Feb 24 at 1:50
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.