Schedule notification based on incremental random time interval












-1















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









share|improve this question























  • 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
















-1















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









share|improve this question























  • 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














-1












-1








-1








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









share|improve this question














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






share|improve this question













share|improve this question











share|improve this question




share|improve this question










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



















  • 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












1 Answer
1






active

oldest

votes


















0














From the little information provided, I would proceed like the following :




  1. Look at NSUserDefaults to see what was the previous iteration

  2. Define a start time based on that previous iteration (if any)

  3. Schedule a local notification using the Local Notifications provided in the iOS SDK.

  4. Save that same date/time in the NSUserDefaults.

  5. Once we reach that time, the notification will be sent (by iOS), and we can execute code to repeat this sequence.






share|improve this answer























    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
    });


    }
    });














    draft saved

    draft discarded


















    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









    0














    From the little information provided, I would proceed like the following :




    1. Look at NSUserDefaults to see what was the previous iteration

    2. Define a start time based on that previous iteration (if any)

    3. Schedule a local notification using the Local Notifications provided in the iOS SDK.

    4. Save that same date/time in the NSUserDefaults.

    5. Once we reach that time, the notification will be sent (by iOS), and we can execute code to repeat this sequence.






    share|improve this answer




























      0














      From the little information provided, I would proceed like the following :




      1. Look at NSUserDefaults to see what was the previous iteration

      2. Define a start time based on that previous iteration (if any)

      3. Schedule a local notification using the Local Notifications provided in the iOS SDK.

      4. Save that same date/time in the NSUserDefaults.

      5. Once we reach that time, the notification will be sent (by iOS), and we can execute code to repeat this sequence.






      share|improve this answer


























        0












        0








        0







        From the little information provided, I would proceed like the following :




        1. Look at NSUserDefaults to see what was the previous iteration

        2. Define a start time based on that previous iteration (if any)

        3. Schedule a local notification using the Local Notifications provided in the iOS SDK.

        4. Save that same date/time in the NSUserDefaults.

        5. Once we reach that time, the notification will be sent (by iOS), and we can execute code to repeat this sequence.






        share|improve this answer













        From the little information provided, I would proceed like the following :




        1. Look at NSUserDefaults to see what was the previous iteration

        2. Define a start time based on that previous iteration (if any)

        3. Schedule a local notification using the Local Notifications provided in the iOS SDK.

        4. Save that same date/time in the NSUserDefaults.

        5. Once we reach that time, the notification will be sent (by iOS), and we can execute code to repeat this sequence.







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Nov 21 '18 at 10:32









        Gil SandGil Sand

        3,81231450




        3,81231450
































            draft saved

            draft discarded




















































            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.




            draft saved


            draft discarded














            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





















































            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







            這個網誌中的熱門文章

            Hercules Kyvelos

            Tangent Lines Diagram Along Smooth Curve

            Yusuf al-Mu'taman ibn Hud