iOS-block

谈谈OC中的循环引用

2015-11-25  本文已影响3120人  邻家菇凉

1.什么时候会发生循环引用

将一个提前准备好的代码块, 在需要执行的时候立即执行, 在不需要立即执行的时候, 用个属性将这个函数传递过来的block记录下来, 产生了强引用, 此时就会发生循环引用

2.怎么解决循环引用

那么怎么解决循环引用, 就是打破任一方的强引用

.

3.如何验证是否发生循环引用

.

4.simple demo

#import "ViewController.h"
#import "NetworkTools.h"


@interface ViewController ()
@property (nonatomic, strong) NetworkTools *tools;
@end

@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    self.tools = [[NetworkTools alloc] init];
   
/*
    //解决方式三: __unsafe_unretained 不推荐, 不安全
    __unsafe_unretained typeof(self) weakSelf = self;
    [self.tools loadData:^(NSString *html) {
        __strong typeof(self) strongSelf = weakSelf;
        NSLog(@"%@%@",html,strongSelf.view);
        strongSelf.view.backgroundColor = [UIColor redColor];
    }];
*/

    //解决方式二: __weak
    __weak typeof(self) weakSelf = self;
    [self.tools loadData:^(NSString *html) {
        __strong typeof(self) strongSelf = weakSelf;
        NSLog(@"%@%@",html,strongSelf.view);
        strongSelf.view.backgroundColor = [UIColor redColor];
    }];
    
}

//解决方式一: 
- (void) method1{
    NetworkTools *tools = [[NetworkTools alloc] init];
    [tools loadData:^(NSString *html) {
        NSLog(@"%@%@",html,self.view);
        self.view.backgroundColor = [UIColor redColor];
    }];
}

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

#import "NetworkTools.h"

@interface NetworkTools ()

//用一个属性 来记录 函数传递过来的 block
@property (nonatomic, copy) void(^finishedBlock)(NSString *);

@end

@implementation NetworkTools

- (void)loadData:(void (^)(NSString *))finishedCallBack {
   
    //开始记录blcok
    self.finishedBlock = finishedCallBack;

    dispatch_async(dispatch_get_global_queue(0, 0), ^{
     
        [NSThread sleepForTimeInterval:3];
      
        //开始耗时任务
        NSLog(@"开始加载数据");
        
        dispatch_async(dispatch_get_main_queue(), ^{
            //调用方法
            [self working];
        });
    }); 
}

- (void) working {
    //执行block
    if (self.finishedBlock) {
        self.finishedBlock(@"<html>");
    }
}

- (void)dealloc {
    NSLog(@"Tools dealloc");
}

@end

上一篇下一篇

猜你喜欢

热点阅读