NSTimer循环引用不释放问题

倒计时是电商APP中经常遇到的,倒计时的技术实现,Apple的Foundation框架提供了NSTimer类
倒计时的实现如下:
HZTimer.h

@protocol HZTimerDelegate <NSObject>

- (void)timerHandleEventWithLeftSeconds:(NSInteger)seconds;

@end


@interface HZTimer : NSObject
@property (nonatomic, weak) id <HZTimerDelegate> delegate;
- (void)stop;
- (void)start;
@end

.m

#import "HZTimer.h"

@interface HZTimer ()
{
    NSTimer *timer;
    NSInteger seconds;
}
@end


@implementation HZTimer
- (instancetype)init{
    self = [super init];
    return self;
}
- (void)stop{

    [timer invalidate];
    timer = nil;
}
- (void)start{
    seconds = 5;
    timer = [NSTimer scheduledTimerWithTimeInterval:1.0 target:self selector:@selector(timerFired) userInfo:nil repeats:YES];
}
- (void)timerFired{
    seconds--;
    if (seconds >= 0) {

        if (self.delegate && [self.delegate respondsToSelector:@selector(timerHandleEventWithLeftSeconds:)]) {
            [self.delegate timerHandleEventWithLeftSeconds:seconds];
        }

    }

}
- (void)dealloc{
    NSLog(@"---------------timer-dealloc");
}
@end

外界的使用:

#import "ViewController.h"
#import "HZTimer.h"
@interface ViewController ()<HZTimerDelegate>
@property (strong, nonatomic) IBOutlet UILabel *titleLabel;

@end

@implementation ViewController
- (IBAction)startBtnClick:(UIButton *)sender {
    [self fireTimer];
}

- (void)viewDidLoad {
    [super viewDidLoad];

}
- (void)fireTimer{

    HZTimer *timer = [[HZTimer alloc] init];
    timer.delegate = self;
    [timer start];

}
- (void)timerHandleEventWithLeftSeconds:(NSInteger)seconds{
    self.titleLabel.text = [NSString stringWithFormat:@"%02zd",seconds];
}

创建timer时,需要绑定target对象self,所以timer强引用实例self,而timer又是作为实例变量或者属性被实例self所引用所以这样就形成了一个引用环
self => timer => self
导致内存泄漏
修改后如下:
.m

#import "HZTimer.h"

@interface HZTimer ()
{
    NSTimer *timer;
    NSInteger seconds;
}
@end


@implementation HZTimer
- (instancetype)init{
    self = [super init];
    return self;
}
- (void)stop{

    [timer invalidate];
    timer = nil;
}
- (void)start{
    seconds = 5;
    timer = [NSTimer scheduledTimerWithTimeInterval:1.0 target:self selector:@selector(timerFired) userInfo:nil repeats:YES];
}
- (void)timerFired{
    seconds--;
    if (seconds >= 0) {

        if (self.delegate && [self.delegate respondsToSelector:@selector(timerHandleEventWithLeftSeconds:)]) {
            [self.delegate timerHandleEventWithLeftSeconds:seconds];
        }

    }else{
        [self stop];
    }

}
- (void)dealloc{
    NSLog(@"---------------timer-dealloc");
}
@end

这样HZTimer类的dealloc就被释放掉了

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值