zoukankan      html  css  js  c++  java
  • ios block循环引用问题

    ios开发中,开了ARC模式,系统自动管理内存,如果程序中用到了block就要注意循环引用带来的内存泄露问题了

    这几天遇到一个问题,正常页面dismiss的时候是要调用dealloc方法的,但是我的程序就是不调用,研究了好久终于找到了问题出在哪里了

    起初的代码如下:

    - (void)getMyrelatedShops

    {

        [self.loadTimerinvalidate];

        self.loadTimer = [NSTimerscheduledTimerWithTimeInterval:0.1

                                                     target:discoverView

                                                   selector:@selector(loadWaiting)

                                                   userInfo:nil

                                                    repeats:YES];

         

        sendedRequest = [[FindShopServicesharedInstance] getMyRelatedShopsWithPageNO:pageNo

                                                                         successBlock:^(TMRequest *request){

                                                                             [self.loadTimer invalidate];

                                                                             [self shopListRequestFinished:request];

                                                                         }failedBlock:^(TMRequest *failedRequest){

                                                                             [self.loadTimer invalidate];

                                                                             [self shopListRequestFailed:failedRequest];

                                                                         }];

    }

    代码表面上看起来没有什么问题,但是细细研究就会发现两个问题

    1、block中引用到self,self 被block retain,sendedRequest又retain了该block的一根拷贝

    2.sendedRequest是在self类中定义赋值,因此是被self retain

    因此就形成了循环引用,不会调用dealloc

    还有一个问题,只要重复性 timer 还没有被 invalidated,target 对象就会被一直持有而不会被释放。因此当你使用 self 当作 target 时,你就不能期望在 dealloc 中 invalidate timer,因为在 timer 没有被invalidate 之前,dealloc 绝不会被调用。因此,需要找个合适的时机和地方来 invalidate timer,但绝不是在 dealloc 中。 

    修改如下

     

    - (void)getMyrelatedShops

    {

        [self.loadTimerinvalidate];

        self.loadTimer = [NSTimerscheduledTimerWithTimeInterval:0.1

                                                     target:discoverView

                                                   selector:@selector(loadWaiting)

                                                   userInfo:nil

                                                    repeats:YES];

        

        __unsafe_unretainedFindShopVC *wfindShopVC = self;

        

        sendedRequest = [[FindShopServicesharedInstance] getMyRelatedShopsWithPageNO:pageNo

                                                                         successBlock:^(TMRequest *request){

                                                                             [wfindShopVC.loadTimer invalidate];

                                                                             [wfindShopVC shopListRequestFinished:request];

                                                                         }failedBlock:^(TMRequest *failedRequest){

                                                                             [wfindShopVC.loadTimer invalidate];

                                                                             [wfindShopVC shopListRequestFailed:failedRequest];

                                                                         }];

    }

    这样就避免了循环引用,页面注销时就会调用dealloc方法了

    关于block的详细解释可参考 http://www.cnblogs.com/kesalin/archive/2013/04/30/ios_block.html


  • 相关阅读:
    SSH框架测试
    Top 20 IoT Platforms in 2018
    基于Helm和Operator的K8S应用管理
    五大开源 Web 代理服务器横评:Squid、Privoxy、Varnish、Polipo、Tinyproxy
    Https单向认证和双向认证
    CNCF Landscape Summary
    走,去出海,一起“Copy to World” | 36氪出海行业报告
    猎豹全球智库执行院长:中国App出海的三大规律和最具代表的五大垂直品类
    闷声发大财,中国 App 出海编年史及方法论
    软件出海的四种模式
  • 原文地址:https://www.cnblogs.com/snake-hand/p/3143138.html
Copyright © 2011-2022 走看看