Nstimer to dismiss a circular reference

Source: Internet
Author: User

Nstimer as a common class, but there is one of the biggest disadvantage, is that it will be strong reference to target, causing the call timer is very troublesome, a little careless to cause a memory leak.

The following is a package for solving this problem.

Directly on the code:


#import <Foundation/Foundation.h>


@interface Lzltimer: NSObject


-(void) Starttimerinterval: ( Nstimeinterval ) ti target:atarget selector: (SEL) selector userInfo: (ID) userInfo repeats: ( BOOL) Yesorno;


@end



#import "LZLTimer.h"

@interface Lzlweaktimertarget: NSObject


@property (nonatomic,weak) ID Target;

@property (nonatomic,assign) SEL selector;


-(void) Timerdidfire: ( Nstimer *) timer;


@end


@implementation Lzlweaktimertarget


-(void) Timerdidfire: ( Nstimer *) Timer {

if(_target) {

// eliminate arc warning

imp imp = [_targetmethodforselector:_selector< /c7>];

if ([nsstringfromselector(_selector) Hassuffix : @":" ]) {

void (*func) (ID,SEL, ID) = ( C9>void *) imp;

func (_target,_selector, timer);

}else {

void (*func) (ID,SEL) = (void *) imp ;

func (_target,_selector);

}

} else {

[Timer invalidate];

}

}


@end


@interface LZL Timer () {

nstimer *_timer;

}


@end


@implementation Lzltimer


-(void) dealloc {

if (_timer!=nil) {

[_timerinvalidate];

_timer =nil;

}

}


-(void) Starttimerinterval: ( Nstimeinterval ) ti target:atarget selector: (SEL) selector userInfo: (ID) userInfo repeats: ( BOOL) Yesorno {

if (nil = =_timer) {

wmweaktimertarget *weaktarget = [[wmweaktimertargetal Loc] init];

Weaktarget. Target = Atarget;

Weaktarget. selector = selector;


_timer = [nstimer scheduledtimerwithtimeinterval : Titarget: weaktarget selector:@selector( Timerdidfire:)userInfo: UserInfo repeats: Yesorno];

}

}


@end


Nstimer to dismiss a circular reference

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.