Schedule notification based on incremental random time interval
How to schedule the notification based on the incremental time span
10 min, 10 hours, 20 hours, 1 day, 5 days, 1 week, 1 month, 5 month, 1 year, 5 years, 10 years.
Notification Message:
for 10 min
You have completed Successfully 10 min
for 10 hours
You have completed Successfully 10 hours
ios objective-c localnotification
add a comment |
How to schedule the notification based on the incremental time span
10 min, 10 hours, 20 hours, 1 day, 5 days, 1 week, 1 month, 5 month, 1 year, 5 years, 10 years.
Notification Message:
for 10 min
You have completed Successfully 10 min
for 10 hours
You have completed Successfully 10 hours
ios objective-c localnotification
just schedule the first notification, then when it fires schedule the next notification and so on.
– vivekDas
Nov 21 '18 at 10:30
What are you actually trying to achieve, given question doesn't actually tell, a proper use case. Give more detail so better solutions can be suggested.
– rptwsthi
Nov 21 '18 at 11:07
add a comment |
How to schedule the notification based on the incremental time span
10 min, 10 hours, 20 hours, 1 day, 5 days, 1 week, 1 month, 5 month, 1 year, 5 years, 10 years.
Notification Message:
for 10 min
You have completed Successfully 10 min
for 10 hours
You have completed Successfully 10 hours
ios objective-c localnotification
How to schedule the notification based on the incremental time span
10 min, 10 hours, 20 hours, 1 day, 5 days, 1 week, 1 month, 5 month, 1 year, 5 years, 10 years.
Notification Message:
for 10 min
You have completed Successfully 10 min
for 10 hours
You have completed Successfully 10 hours
ios objective-c localnotification
ios objective-c localnotification
asked Nov 21 '18 at 10:25
kirankiran
1,9923573
1,9923573
just schedule the first notification, then when it fires schedule the next notification and so on.
– vivekDas
Nov 21 '18 at 10:30
What are you actually trying to achieve, given question doesn't actually tell, a proper use case. Give more detail so better solutions can be suggested.
– rptwsthi
Nov 21 '18 at 11:07
add a comment |
just schedule the first notification, then when it fires schedule the next notification and so on.
– vivekDas
Nov 21 '18 at 10:30
What are you actually trying to achieve, given question doesn't actually tell, a proper use case. Give more detail so better solutions can be suggested.
– rptwsthi
Nov 21 '18 at 11:07
just schedule the first notification, then when it fires schedule the next notification and so on.
– vivekDas
Nov 21 '18 at 10:30
just schedule the first notification, then when it fires schedule the next notification and so on.
– vivekDas
Nov 21 '18 at 10:30
What are you actually trying to achieve, given question doesn't actually tell, a proper use case. Give more detail so better solutions can be suggested.
– rptwsthi
Nov 21 '18 at 11:07
What are you actually trying to achieve, given question doesn't actually tell, a proper use case. Give more detail so better solutions can be suggested.
– rptwsthi
Nov 21 '18 at 11:07
add a comment |
1 Answer
1
active
oldest
votes
From the little information provided, I would proceed like the following :
- Look at NSUserDefaults to see what was the previous iteration
- Define a start time based on that previous iteration (if any)
- Schedule a local notification using the Local Notifications provided in the iOS SDK.
- Save that same date/time in the
NSUserDefaults
. - Once we reach that time, the notification will be sent (by iOS), and we can execute code to repeat this sequence.
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53409989%2fschedule-notification-based-on-incremental-random-time-interval%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
From the little information provided, I would proceed like the following :
- Look at NSUserDefaults to see what was the previous iteration
- Define a start time based on that previous iteration (if any)
- Schedule a local notification using the Local Notifications provided in the iOS SDK.
- Save that same date/time in the
NSUserDefaults
. - Once we reach that time, the notification will be sent (by iOS), and we can execute code to repeat this sequence.
add a comment |
From the little information provided, I would proceed like the following :
- Look at NSUserDefaults to see what was the previous iteration
- Define a start time based on that previous iteration (if any)
- Schedule a local notification using the Local Notifications provided in the iOS SDK.
- Save that same date/time in the
NSUserDefaults
. - Once we reach that time, the notification will be sent (by iOS), and we can execute code to repeat this sequence.
add a comment |
From the little information provided, I would proceed like the following :
- Look at NSUserDefaults to see what was the previous iteration
- Define a start time based on that previous iteration (if any)
- Schedule a local notification using the Local Notifications provided in the iOS SDK.
- Save that same date/time in the
NSUserDefaults
. - Once we reach that time, the notification will be sent (by iOS), and we can execute code to repeat this sequence.
From the little information provided, I would proceed like the following :
- Look at NSUserDefaults to see what was the previous iteration
- Define a start time based on that previous iteration (if any)
- Schedule a local notification using the Local Notifications provided in the iOS SDK.
- Save that same date/time in the
NSUserDefaults
. - Once we reach that time, the notification will be sent (by iOS), and we can execute code to repeat this sequence.
answered Nov 21 '18 at 10:32
Gil SandGil Sand
3,81231450
3,81231450
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53409989%2fschedule-notification-based-on-incremental-random-time-interval%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
just schedule the first notification, then when it fires schedule the next notification and so on.
– vivekDas
Nov 21 '18 at 10:30
What are you actually trying to achieve, given question doesn't actually tell, a proper use case. Give more detail so better solutions can be suggested.
– rptwsthi
Nov 21 '18 at 11:07