"iOS Basics" Nstimer timer use

Source: Internet
Author: User

1. Statement

Nstimer *timer;

2. Definition

Timer = [Nstimerscheduledtimerwithtimeinterval:1.0ftarget:selfselector: @selector (updatevalue) userinfo:nilrepeats : YES];

The following is the calling function

-(void) Updatevalue

{

NSLog (@ "Hello Timer");

}

3. Turn on the timer

-(void) Viewwillappear: (BOOL) animated

{

Open Timer

[Timer Setfiredate:[nsdatedistantpast]];

}

4. Turn off the timer

-(void) Viewdiddisappear: (BOOL) animated

{

Turn off the timer

[Timer setfiredate:[nsdatedistantfuture]];

}

Here's another GCD timer method:

1. Statement

dispatch_source_t _timer;

2. Define Use

__weakid weakself =self;

Double Delayinsecond = 0.25;

_timer =dispatch_source_create (dispatch_source_type_timer, 0, 0,dispatch_get_main_queue ());

Dispatch_source_set_timer (_timer,dispatch_walltime (NULL, 0), (unsigned) (Delayinsecond *nsec_per_sec), 0);

Dispatch_source_set_event_handler (_timer, ^{[weakselfupdatevalues];});

Open

Dispatch_resume (_timer);

-(void) updatevalues

{

NSLog (@ "Hello Timer");

}

3. Release

Dispatch_source_cancel (_timer);

Dispatch_release (_timer);

"iOS Basics" Nstimer timer use

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.