iOS 内存管理--弱引用和强引用

前言

前面我们已经学习了几篇iOS内存相关的内容,分别如下:

本篇通过案例来分析学习强引用和弱引用相关的内容,请继续往下吧。

1. 引用计数探索

引入一个案例:

    NSObject * objc = [NSObject alloc];
    NSLog(@"%ld ---- %@ ---- %p",CFGetRetainCount((__bridge CFTypeRef)objc), objc, &objc);

    NSObject * new_objc = objc;
    NSLog(@"%ld ---- %@ ---- %p",CFGetRetainCount((__bridge CFTypeRef)objc), objc, &objc);
    NSLog(@"%ld ---- %@ ---- %p",CFGetRetainCount((__bridge CFTypeRef)new_objc), new_objc, &new_objc);

创建了一个objc对象,打印其引用计数;新建一个new_objc引用,并赋值objc,再次打印他们的引用计数。输出结果如下:

运行结果

输出结果和我们的设想是一样的,通过alloc方法新建对象后,其isa指针extra_rc = 1。新建的引用new_objc,也指向这个对象,只是指针地址不同,引用计数变为2。通过下图,可以清晰看出其内存关系:
内存关系

1.1 弱引用

对上面的案例进行一些调整,如下:

    NSObject * objc = [NSObject alloc];
    NSLog(@"%ld ---- %@ ---- %p",CFGetRetainCount((__bridge CFTypeRef)objc), objc, &objc);

    __weak typeof(self) theWeak = objc;
    NSLog(@"%ld ---- %@ ---- %p",CFGetRetainCount((__bridge CFTypeRef)objc), objc, &objc);
    NSLog(@"%ld ---- %@ ---- %p",CFGetRetainCount((__bridge CFTypeRef)theWeak), theWeak, &theWeak);

objc赋值给弱引用theWeak,打印其引用计数应该是怎样的呢?请看以下的运行结果:

运行结果

新建一个oc对象,其引用计数为1,弱引用指向该对象后,引用计数不变依然为1,这是非常好理解的,问题就是弱引用对象theWeak的引用计数为什么为2呢?我们在以下的代码添加断点,如下:

NSLog(@"%ld ---- %@ ---- %p",CFGetRetainCount((__bridge CFTypeRef)theWeak), theWeak, &theWeak);

打开汇编断点,查看汇编发现其调用了objc_loadWeak方法如下:

查看汇编信息

进入objc_loadWeak方法继续查看,如下:
objc_loadWeak

该方法在libobjc.A.dylib库中,并且会调动objc_loadWeakRetained方法,那么我们立即打开源码查看其流程。

objc_loadWeak方法中,传入的参数为location,即为弱引用的地址,其存储的指针指向堆区对象。如下:

objc_loadWeak

查看objc_loadWeakRetained的源码实现,如下:

objc_loadWeakRetained(id *location)
{
    id obj;
    id result;
    Class cls;

    SideTable *table;

 retry:

    // fixme std::atomic this load
    obj = *location;
    if (obj->isTaggedPointerOrNil()) return obj;

    table = &SideTables()[obj];
    table->lock();
    if (*location != obj) {
        table->unlock();
        goto retry;
    }

    result = obj;

    cls = obj->ISA();
    if (! cls->hasCustomRR()) {
        // Fast case. We know +initialize is complete because
        // default-RR can never be set before then.
        ASSERT(cls->isInitialized());
        if (! obj->rootTryRetain()) {
            result = nil;
        }
    }
    else {
        // Slow case. We must check for +initialize and call it outside
        // the lock if necessary in order to avoid deadlocks.

        // Use lookUpImpOrForward so we can avoid the assert in

        // class_getInstanceMethod, since we intentionally make this

        // callout with the lock held.
        if (cls->isInitialized() || _thisThreadIsInitializingClass(cls)) {
            BOOL (*tryRetain)(id, SEL) = (BOOL(*)(id, SEL))
                lookUpImpOrForwardTryCache(obj, @selector(retainWeakReference), cls);
            if ((IMP)tryRetain == _objc_msgForward) {
                result = nil;
            }
            else if (! (*tryRetain)(obj, @selector(retainWeakReference))) {
                result = nil;
            }
        }
        else {
            table->unlock();
            class_initialize(cls, obj);
            goto retry;
        }
    }

    table->unlock();
    return result;
}

跟踪代码,发现对象会赋值给一个临时变量objobj的引用计数一直是1,最终obj会调用rootTryRetain方法。如下:


继续跟踪代码,最终会调用rootRetain方法,方法也就是retain的底层实现,对引用计数进行操作,在这里弱引用指向对象的引用计数变为了2。如下:

这又是为什呢?对个weak对象指向objc,其引用计数会不会一直叠加下去呢?请继续往下看:
案例分析

发现弱引用对象的引用计数一直是2,并没有叠。着是为什么?
在一个弱引用指向一个对象时,会将该弱引用插入到对象所对应的弱引用表中,而在获取该弱引用的引用计数时,其底层源码实现是通过设置一个临时变量,临时变量通过rootRetain方法,使引用计数变为2weak实际操作的是临时变量。当rootRetain流程结束后,临时对象也被消耗,所以再次获取弱引用的引用计数依然是2

2. Timer强引用问题

NSTimerblock在使用过程中都会存在循环引用的问题,但是NSTimer的情况更为特殊,因为NSTimer依赖于Runloop,会被Runloop强持有,导致NSTimer无法释放block循环引用和解决方式参看:[iOS block底层原理分析(1)--循环引用]

2.1 案例分析

  • NSTimer使用block
    引用以下的案例,并且运行结果如下:

    案例分析

    此种方式,NSTimerViewController都能够正常释放。

  • NSTimer强引用问题
    通常我们采用下面的两种方式使用NSTimer,这种情况会出现RunloopNSTimer进行强持有,导致其无法释放的问题。

__weak typeof(self) weakSelf = self;
self.timer = [NSTimer scheduledTimerWithTimeInterval:1 target:weakSelf selector:@selector(fireHome) userInfo:nil repeats:YES];

self.timer = [NSTimer timerWithTimeInterval:1 target:weakSelf selector:@selector(fireHome) userInfo:nil repeats:YES];
[[NSRunLoop currentRunLoop] addTimer:self.timer forMode:NSRunLoopCommonModes];

因为这里NSRunLoop -->NSTimer (强持有)-> weakSelf-> self,虽然传入的targetweakSelf,但是NSTimerweakSelf进行了强持有,所以不会释放。在viewCtrdealloc方法中调用[self.timer invalidate];也就没有效果,因为viewCtrdealloc方法根本就不会执行

文档说明

在苹果的官方文档中也提到了这点,NSTimer会对传入的target进行强持有。其实这个情况和block的一些案例是一样的,比如静态变量持有了weakSelf,此种情况也是会导致循环引用无法释放的问题:

    // staticSelf_定义: 
    static ViewController *staticSelf_; 
    - (void)blockWeak_static { 
        __weak typeof(self) weakSelf = self; 
        staticSelf_ = weakSelf; 
    }

block内部使用__strong强弱共舞,也是使用了强引用的方式使self延迟释放

    __weak typeof(self) weakSelf = self; 
    self.block = ^()
    { 
        __strong __typeof(weakSelf)strongWeak = weakSelf; 
        dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(2 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{ 
            NSLog(@"%@", strongWeak.name); 
        }); 
    };

如果block捕获用__weak修饰的外部变量,其内部的变量也是用__weak修饰,下图为block捕获弱引用后,clang得出的结果:

main.cpp

带着疑问,NSTimer的循环引用问题应该怎么解决呢?请继续往下。

  • 手动移除强引用
    因为dealloc无法执行,所以将[self.timer invalidate];写在dealloc中也就没有什么效果。我们可以将该方法放在viewWillDisappear或者didMoveToParentViewController方法中,手动移除强引用。
    手动移除强引用

    这种方式需要根据业务的需求进行调整,有时候也并不能完全满足需要,不够灵活。调用invalidate为什么就可以释放了呢?在官方文档中有说明:
    invalidate官方说明
  • 中介者模式
    使用一个第三方接收消息:
    static int num = 0; // 静态
    
    self.target = [[NSObject alloc] init];

    class_addMethod([NSObject class], @selector(fireHome), (IMP)fireHomeObjc, "v@:");
     self.timer = [NSTimer scheduledTimerWithTimeInterval:1 target:self.target selector:@selector(fireHome) userInfo:nil repeats:YES];

查看运行结果,如下:

运行结果

通过定义的对象来接收消息。上面的运行结果发现,成功避免的NSTimerself强持有问题,ViewController能够正常释放,并能够达到业务需求。但是这个方式也有其缺点,就是无法使用self里面的方法业务上很难实现交互

  • 自定义NSTimer
    代码实现如下:
#import <Foundation/Foundation.h>

@interface LGTimerWapper : NSObject

- (instancetype)lg_initWithTimeInterval:(NSTimeInterval)ti target:(id)aTarget selector:(SEL)aSelector userInfo:(nullable id)userInfo repeats:(BOOL)yesOrNo;

- (void)lg_invalidate;
@end


#import "LGTimerWapper.h"
#import <objc/message.h>

@interface LGTimerWapper()
@property (nonatomic, weak) id target;
@property (nonatomic, assign) SEL aSelector;
@property (nonatomic, strong) NSTimer *timer;
@end

@implementation LGTimerWapper
// 中介者 vc dealloc
- (instancetype)lg_initWithTimeInterval:(NSTimeInterval)ti target:(id)aTarget selector:(SEL)aSelector userInfo:(nullable id)userInfo repeats:(BOOL)yesOrNo{
    if (self == [super init]) {
        self.target     = aTarget; // vc
        self.aSelector  = aSelector; // 方法 -- vc 释放
        
        if ([self.target respondsToSelector:self.aSelector]) {
            Method method    = class_getInstanceMethod([self.target class], aSelector);
            const char *type = method_getTypeEncoding(method);
            class_addMethod([self class], aSelector, (IMP)fireHomeWapper, type);

            self.timer      = [NSTimer scheduledTimerWithTimeInterval:ti target:self selector:aSelector userInfo:userInfo repeats:yesOrNo];
        }
    }
    return self;
}

// 一直跑 runloop
void fireHomeWapper(LGTimerWapper *warpper){
    if (warpper.target) { // vc - dealloc
        void (*gf_msgSend)(void *,SEL, id) = (void *)objc_msgSend;
        gf_msgSend((__bridge void *)(warpper.target), warpper.aSelector,warpper.timer);
    }else{ // warpper.target
        [warpper.timer invalidate];
        warpper.timer = nil;
    }
}

- (void)lg_invalidate{
    [self.timer invalidate];
    self.timer = nil;
}

- (void)dealloc{
    NSLog(@"%s",__func__);
}

@end

自定义的LGTimerWapper中,使用了runtime中介者的思路。

  • 首先,因为NSTimerViewController会产生循环应用,所以这里LGTimerWapper内部的NSTimer不再持有viewController,而是持有LGTimerWapper自己

  • 并且self.target修饰为weak,当viewController被释放时,target也会被释放

  • 同时为了保证业务交互,采用runtime特性,向LGTimerWapper中添加了与viewController一样的方法,在NSTimer调用对应的方法时,通过objc_msgSend向viewController发送一条消息,让viewController去完成相关的业务操作

  • viewController释放时,target也会被置空,则直接调用invalidate方法完成NSTimer的释放。

  • proxy虚基类
    虚基类的声明见下图:

    虚基类的声明

    该类的主要功能是来接收消息!使用方法如下:

// 使用
self.proxy = [GFProxy proxyWithTransformObject:self];
self.timer = [NSTimer scheduledTimerWithTimeInterval:1 target:self.proxy selector:@selector(fireHome) userInfo:nil repeats:YES];
   
// 自定义虚基类实现
@interface GFProxy : NSProxy
+ (instancetype)proxyWithTransformObject:(id)object;
@end

@interface GFProxy()
@property (nonatomic, weak) id object;
@end

@implementation GFProxy

+ (instancetype)proxyWithTransformObject:(id)object{
    LGProxy *proxy = [LGProxy alloc];
    proxy.object = object;
    return proxy;
}

// 快速消息转发
//-(id)forwardingTargetForSelector:(SEL)aSelector {
//    return self.object;
//}

// 慢速消息转发 - sel - imp -
- (NSMethodSignature *)methodSignatureForSelector:(SEL)sel{

    if (self.object) {
    }else{
        NSLog(@"麻烦收集 stack111");
    }
    return [self.object methodSignatureForSelector:sel];
}

- (void)forwardInvocation:(NSInvocation *)invocation{
    if (self.object) {
        [invocation invokeWithTarget:self.object];
    }else{
        NSLog(@"麻烦收集 stack");
    }
}
@end

NSProxy的基类可以被用来透明的转发消息,自定义的GFProxy通过weak修饰持有了viewControllerNSTimertarget设置为GFProxy对象,所以NSTimerviewController没有产生循环引用。但是NSTimer的消息会发送到GFProxy中,通过消息转发机制,转发给(weak)object去执行。这样即解决了循环引用问题,也保证了业务的交互。

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 205,386评论 6 479
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,939评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,851评论 0 341
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,953评论 1 278
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,971评论 5 369
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,784评论 1 283
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,126评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,765评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 43,148评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,744评论 2 323
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,858评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,479评论 4 322
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,080评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,053评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,278评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,245评论 2 352
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,590评论 2 343

推荐阅读更多精彩内容