Two ways to implement the countdown to "go" iOS development

Source: Internet
Author: User

Original: http://blog.csdn.net/kylinbl/article/details/8972261

Method 1: Use Nstimer to implement

The main use of the Nstimer Scheduledtimerwithtimeinterval method to perform a timefiremethod function every 1 seconds, timefiremethod the countdown of some operations, When finished, the timer is invalidate off, the code is as follows:

[CPP]View Plaincopyprint?
    1. Secondscountdown = 60; //60 Seconds Countdown
    2. Countdowntimer = [Nstimer scheduledtimerwithtimeinterval:1 target:self selector: @selector (timefiremethod) UserInfo: Nil Repeats:yes];
    3. -(void) timefiremethod{
    4. secondscountdown--;
    5. if (secondscountdown==0) {
    6. [Countdowntimer invalidate];
    7. }
    8. }


Method 2: Use GCD to implement

The code is as follows:

[CPP]View Plaincopyprint?
    1. __block int timeout=300; //Countdown time
    2. dispatch_queue_t queue = Dispatch_get_global_queue (Dispatch_queue_priority_default, 0);
    3. dispatch_source_t _timer = dispatch_source_create (dispatch_source_type_timer, 0, 0,queue);
    4. Dispatch_source_set_timer (_timer,dispatch_walltime (NULL, 0), 1.0*nsec_per_sec, 0); //per second execution
    5. Dispatch_source_set_event_handler (_timer, ^{
    6. if (timeout<=0) { //countdown end, close
    7. Dispatch_source_cancel (_timer);
    8. Dispatch_release (_timer);
    9. Dispatch_async (Dispatch_get_main_queue (), ^{
    10. Set the interface button to display the settings according to your needs
    11. 。。。。。。。。
    12. });
    13. }else{
    14. int minutes = TIMEOUT/60;
    15. int seconds = timeout% 60;
    16. NSString *strtime = [NSString stringwithformat:@"%d minutes%.2d seconds after re-obtaining the verification code", minutes, seconds];
    17. Dispatch_async (Dispatch_get_main_queue (), ^{
    18. //Set the interface button to display according to your own needs settings
    19. 。。。。。。。。
    20. });
    21. timeout--;
    22. }
    23. });
    24. Dispatch_resume (_timer);

Two ways to implement the countdown to "go" iOS development

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.