zoukankan      html  css  js  c++  java
  • 循环引用的案例

    一、parent-child相互持有、委托模式

    【案例】:

    1
    2
    3
    4
    5
    6
    @interface FTAppCenterMainViewController ()
    {
    }
     
    @property(weak,nonatomic) UITableView* myTableView;
    @end
    这里面的myTableView就使用了weak修饰符。
    1
    @property (nonatomic, weak)  id<ftactionsheetdelegate>delegate;</ftactionsheetdelegate>

    【推荐方法】:

    child只有parent的对象为weak类型:

    1
    @property (nonatomic, weak)  id<ftactionsheetdelegate>delegate;</ftactionsheetdelegate>

    二、block

    【案例】:

    看下面的代码:

    1
    2
    3
    4
    5
    typedef void (^RequestNaviCallBack)(NSInteger naviCode,NSInteger httpCode,NSError * error);
    @interface FtNaviManager : NSObject
    {
    }
    @property (nonatomic, strong)   RequestNaviCallBack naviCallBack;
    这是一个请求导航的类,类属性持有了RequestNaviCallBack,这时,如果RequestNaviCallBack再持有self,必然造成循环引用。

    【推荐方法】:

    如果有循环引用,编译器会提示警告。

    如果对象没有持有Block对象,那么不会产生循环引用。如果对象持有了block对象,那么在block引用self的时候这么定义:

    1
    __weak typeof(self) weakSelf = self;

    三、NSTimer

    【案例】:

    1
    2
    3
    4
    5
    6
    @interface FtKeepAlive : NSObject
    {
        NSTimer*              _keepAliveTimer; // 发送心跳timer
    }
    //实现文件
    _keepAliveTimer = [NSTimer scheduledTimerWithTimeInterval:_expired target:self selector:@selector(keepLiveStart) userInfo:nil repeats:YES];

    类持有了_keepAliveTimer,_keepAliveTimer又持有了self,造成循环引用。

    【推荐方法】:

    NSTimer会持有对象,所以:在删除对象之前,需要将timer的invalidate方法。

    1
    2
    3
    4
    -(void)stopKeepAlive{
        [_keepAliveTimer invalidate];
        _keepAliveTimer = nil;
    }
    1
  • 相关阅读:
    完美解决微信端设置title失败问题
    linux下的find&&grep查找命令
    微信开发二三事
    干掉chrome下input恶心的黄色背景
    关于.gitignore文件使用说明
    HTTPie:一个不错的 HTTP 命令行客户端
    退出登录功能改变window的rootviewcontroller输入框键盘不会收起
    coredata操作工具
    并发编程gcd粗暴记忆法
    网友的百度移动云可穿戴部门的面试经历
  • 原文地址:https://www.cnblogs.com/fantasy3588/p/5391349.html
Copyright © 2011-2022 走看看